summaryrefslogtreecommitdiff
path: root/mech
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-12-22 21:15:59 +0100
committerxengineering <me@xengineering.eu>2024-01-02 14:24:06 +0100
commitac348c4044e6252da91de247d77484509677cca0 (patch)
tree8d5177890446d856af5b2ff86fb9e2adbf9a54cf /mech
parent7224aa0c74ae51f49e87e9c18bc94c2761dadf24 (diff)
downloadsoundbox-ac348c4044e6252da91de247d77484509677cca0.tar
soundbox-ac348c4044e6252da91de247d77484509677cca0.tar.zst
soundbox-ac348c4044e6252da91de247d77484509677cca0.zip
Switch to repository-global Makefile
The build system of this repository should be used from the repository root. Subdirectories should only contain additional *.mk files which will be included by the central Makefile. This should allow to have dependencies between subdirectories if required and easily allows to build everything.
Diffstat (limited to 'mech')
-rw-r--r--mech/mech.mk (renamed from mech/Makefile)10
1 files changed, 5 insertions, 5 deletions
diff --git a/mech/Makefile b/mech/mech.mk
index 1f80d35..6807c03 100644
--- a/mech/Makefile
+++ b/mech/mech.mk
@@ -1,10 +1,10 @@
+MECH_BUILD_DIR := $(BUILD_DIR)/mech
PARTS := bottom top back front
-BUILD_DIR := ./build
-STL := $(PARTS:%=$(BUILD_DIR)/%.stl)
-GCODE := $(PARTS:%=$(BUILD_DIR)/%.gcode)
+STL := $(PARTS:%=$(MECH_BUILD_DIR)/%.stl)
+GCODE := $(PARTS:%=$(MECH_BUILD_DIR)/%.gcode)
-.PHONY: all
-all: $(GCODE)
+.PHONY: mech
+mech: $(GCODE)
$(BUILD_DIR)/%.gcode: $(BUILD_DIR)/%.stl
mkdir -p $(dir $@)