author | Michael Krelin <hacker@klever.net> | 2018-07-31 19:54:10 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2018-07-31 19:54:23 (UTC) |
commit | 4b1f3dfe12ef5357fa28caa2c5265c88bd51a864 (patch) (side-by-side diff) | |
tree | 89f421de78a5d258e1b06d7cddccf50eef18b571 /Makefile | |
parent | e25427a293ea1f3cbf2e1f90562fb76d8c5632ba (diff) | |
download | extrudery-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.
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -5,2 +5,5 @@ OPENSCAD_BIN?=${OPENSCAD_APP}/Contents/MacOS/OpenSCAD OPENSCAD_FLAGS=-D draft=false +SED?=sed +ECHO?=/bin/echo +AWK?=awk @@ -22,2 +25,9 @@ another-%-knob.stl: another-%.scad another.scad +multiswitch.c8r.scad: multiswitch-c8r.scad threads.scad pushfit_data.scad pushfittery.scad multiswitch.scad + @echo "Preprocessing into $@…" + @( \ + $(ECHO) "/* DO NOT. JUST DO NOT. FORGET THIS FILE, IT'S PREPROCESSED, GET THE SOURCE. */" ;\ + $(AWK) '/^\/\/CUSTOMIZERCUTOFF/ {nextfile} {print}' $^ | $(SED) -Ee 's,^(use|include),//\1,g' \ + ) > $@ + %.stl: %.scad |