summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
-rw-r--r--mech/mech.mk (renamed from mech/Makefile)10
2 files changed, 10 insertions, 5 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a94ae02
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,5 @@
+BUILD_DIR := ./build
+
+all: mech
+
+include mech/mech.mk
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 $@)