diff options
author | xengineering <me@xengineering.eu> | 2025-01-06 19:54:16 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-01-06 19:54:16 +0100 |
commit | 468f151044a52af2f829c473179163f5d68b9614 (patch) | |
tree | 26d3fcccc354c8f011ffcac2669b7b62b2baca7e /Makefile | |
parent | 03d41e8069623b5d627dfb298c471a16c380c91d (diff) | |
download | soundbox-468f151044a52af2f829c473179163f5d68b9614.tar soundbox-468f151044a52af2f829c473179163f5d68b9614.tar.zst soundbox-468f151044a52af2f829c473179163f5d68b9614.zip |
mech: Remove directory
It is planned to add a `pcb` folder with a custom PCB design. This
design will be incompatible with the current case developed in `mech`.
Thus the case has to be removed first.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -32,18 +32,11 @@ $(TARGET_DIR): debug rm -rf $@ mkdir -p $@ install -Dm 644 $(BUILD_DIR)/doc/documentation.pdf $@ - install -Dm 644 $(BUILD_DIR)/mech/assembly.gcode $@ - install -Dm 644 $(BUILD_DIR)/mech/assembly.stl $@ - install -Dm 644 $(BUILD_DIR)/mech/production.gcode $@ - install -Dm 644 $(BUILD_DIR)/mech/production.stl $@ - 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 +debug: doc .PHONY: clean clean: rm -rf $(BUILD_DIR) include doc/doc.mk -include mech/mech.mk |