summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7e1f736..12a0137 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ all: $(ARCHIVE)
$(ARCHIVE): $(TARGET_DIR)
tar --zstd -cf $@ -C $(ARTIFACTS_DIR) $(TARGET_NAME)
-$(TARGET_DIR): doc mech
+$(TARGET_DIR): debug
rm -rf $@
mkdir -p $@
install -Dm 644 $(BUILD_DIR)/doc/soundbox-documentation.pdf $@
@@ -21,6 +21,8 @@ $(TARGET_DIR): doc mech
install -Dm 644 $(BUILD_DIR)/mech/pcb_case/tolerance_tests.gcode $@
install -Dm 644 $(BUILD_DIR)/mech/pcb_case/tolerance_tests.stl $@
+debug: doc mech
+
.PHONY: clean
clean:
rm -rf $(BUILD_DIR)