summaryrefslogtreecommitdiff
path: root/Makefile
authorMichael Krelin <hacker@klever.net>2018-07-31 19:54:10 (UTC)
committer Michael Krelin <hacker@klever.net>2018-07-31 19:54:23 (UTC)
commit4b1f3dfe12ef5357fa28caa2c5265c88bd51a864 (patch) (unidiff)
tree89f421de78a5d258e1b06d7cddccf50eef18b571 /Makefile
parente25427a293ea1f3cbf2e1f90562fb76d8c5632ba (diff)
downloadextrudery-4b1f3dfe12ef5357fa28caa2c5265c88bd51a864.zip
extrudery-4b1f3dfe12ef5357fa28caa2c5265c88bd51a864.tar.gz
extrudery-4b1f3dfe12ef5357fa28caa2c5265c88bd51a864.tar.bz2
preprocess multiswitch for customizer.
no, this is not seriously useful preprocessor, but works for this case. real men don't use customizer anyway.
Diffstat (limited to 'Makefile') (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 31135cb..a488056 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,9 @@
3OPENSCAD_APP?=/Applications/OpenSCAD.app 3OPENSCAD_APP?=/Applications/OpenSCAD.app
4OPENSCAD_BIN?=${OPENSCAD_APP}/Contents/MacOS/OpenSCAD 4OPENSCAD_BIN?=${OPENSCAD_APP}/Contents/MacOS/OpenSCAD
5OPENSCAD_FLAGS=-D draft=false 5OPENSCAD_FLAGS=-D draft=false
6SED?=sed
7ECHO?=/bin/echo
8AWK?=awk
6 9
7default: 10default:
8 @echo "And?" 11 @echo "And?"
@@ -20,5 +23,12 @@ another-%-lever.stl: another-%.scad another.scad
20another-%-knob.stl: another-%.scad another.scad 23another-%-knob.stl: another-%.scad another.scad
21 $(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D 'what="knob"' -o "$@" "$<" 24 $(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D 'what="knob"' -o "$@" "$<"
22 25
26multiswitch.c8r.scad: multiswitch-c8r.scad threads.scad pushfit_data.scad pushfittery.scad multiswitch.scad
27 @echo "Preprocessing into $@…"
28 @( \
29 $(ECHO) "/* DO NOT. JUST DO NOT. FORGET THIS FILE, IT'S PREPROCESSED, GET THE SOURCE. */" ;\
30 $(AWK) '/^\/\/CUSTOMIZERCUTOFF/ {nextfile} {print}' $^ | $(SED) -Ee 's,^(use|include),//\1,g' \
31 ) > $@
32
23%.stl: %.scad 33%.stl: %.scad
24 ${OPENSCAD_BIN} ${OPENSCAD_FLAGS} -o "$@" "$<" 34 ${OPENSCAD_BIN} ${OPENSCAD_FLAGS} -o "$@" "$<"