|
diff --git a/Makefile b/Makefile index b9d2b4c..429237d 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -31,12 +31,14 @@ another-%-knob-label.stl: another-%.scad another.scad |
31 | another-%-springpad.stl: another-%.scad another.scad |
31 | another-%-springpad.stl: another-%.scad another.scad |
32 | $(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D 'what="springpad"' -o "$@" "$<" |
32 | $(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D 'what="springpad"' -o "$@" "$<" |
33 | |
33 | |
34 | multiswitch: multiswitch.c8r.scad $(addsuffix .stl,$(addprefix multiswitch-embeddest-,2 3 4 5 6)) |
34 | multiswitch: multiswitch.c8r.scad $(addsuffix .stl,$(addprefix multiswitch-embeddest-,2 3 4 5 6)) |
35 | multiswitch-embeddest-%.stl: multiswitch-embeddest.scad |
35 | multiswitch-embeddest-%.stl: multiswitch-embeddest.scad |
36 | $(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D inputs=$* -o "$@" "$<" |
36 | $(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D inputs=$* -o "$@" "$<" |
| |
37 | multiswitch-metal-%.stl: multiswitch-metal.scad |
| |
38 | $(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D inputs=$* -o "$@" "$<" |
37 | |
39 | |
38 | multiswitch.c8r.scad: multiswitch-c8r.scad threads.scad pushfit_data.scad pushfittery.scad multiswitch.scad |
40 | multiswitch.c8r.scad: multiswitch-c8r.scad threads.scad pushfit_data.scad pushfittery.scad multiswitch.scad |
39 | @echo "Preprocessing into $@…" |
41 | @echo "Preprocessing into $@…" |
40 | @( \ |
42 | @( \ |
41 | $(ECHO) "/* DO NOT. JUST DO NOT. FORGET THIS FILE, IT'S PREPROCESSED, GET THE SOURCE. */" ;\ |
43 | $(ECHO) "/* DO NOT. JUST DO NOT. FORGET THIS FILE, IT'S PREPROCESSED, GET THE SOURCE. */" ;\ |
42 | $(AWK) '/^\/\/CUSTOMIZERCUTOFF/ {nextfile} {print}' $^ | $(SED) -Ee 's,^(use|include),//\1,g' \ |
44 | $(AWK) '/^\/\/CUSTOMIZERCUTOFF/ {nextfile} {print}' $^ | $(SED) -Ee 's,^(use|include),//\1,g' \ |
|