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 /mech/mech.mk | |
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 'mech/mech.mk')
-rw-r--r-- | mech/mech.mk | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/mech/mech.mk b/mech/mech.mk deleted file mode 100644 index ca39a7c..0000000 --- a/mech/mech.mk +++ /dev/null @@ -1,17 +0,0 @@ -PRINTER := anycubic_i3_mega_s -PRINTER_CONFIG := $(PRINTER:%=mech/prusa-slicer/%.ini) -MECH_BUILD_DIR := $(BUILD_DIR)/mech -PARTS := assembly production pcb_case/tolerance_tests -STL := $(PARTS:%=$(MECH_BUILD_DIR)/%.stl) -GCODE := $(PARTS:%=$(MECH_BUILD_DIR)/%.gcode) - -.PHONY: mech -mech: $(GCODE) $(STL) - -$(BUILD_DIR)/%.gcode: $(BUILD_DIR)/%.stl - mkdir -p $(dir $@) - prusa-slicer --load $(PRINTER_CONFIG) --output $@ --export-gcode $< - -$(BUILD_DIR)/%.stl: %.scad - mkdir -p $(dir $@) - openscad --hardwarnings --export-format binstl -o $@ $< |