summaryrefslogtreecommitdiff
path: root/Makefile
authorMichael Krelin <hacker@klever.net>2018-09-06 20:58:54 (UTC)
committer Michael Krelin <hacker@klever.net>2018-09-06 20:58:54 (UTC)
commit1409beae6cdd6520ef037b0d2a083844ce0e0c47 (patch) (side-by-side diff)
treef6a4df48f0f870a3f152db11bf464052b5add237 /Makefile
parent4cc8be3ab27f44d8a298b8df3df0092d1f95e067 (diff)
downloadextrudery-1409beae6cdd6520ef037b0d2a083844ce0e0c47.zip
extrudery-1409beae6cdd6520ef037b0d2a083844ce0e0c47.tar.gz
extrudery-1409beae6cdd6520ef037b0d2a083844ce0e0c47.tar.bz2
spring compression scale
Diffstat (limited to 'Makefile') (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5753a68..b9d2b4c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,44 +1,46 @@
-include Makefile.local
OPENSCAD_APP?=/Applications/OpenSCAD.app
OPENSCAD_BIN?=${OPENSCAD_APP}/Contents/MacOS/OpenSCAD
OPENSCAD_FLAGS=-D draft=false -D debug=false
SED?=sed
ECHO?=/bin/echo
AWK?=awk
default:
@echo "And?"
clean:
rm -f *.stl *.gcode
stl-another-%:
- $(MAKE) another-$*-{body,body-label,lever,knob,knob-label,springpad}.stl
+ $(MAKE) another-$*-{body,body-label,body-scale,lever,knob,knob-label,springpad}.stl
another-%-body.stl: another-%.scad another.scad
$(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D 'what="body"' -o "$@" "$<"
another-%-body-label.stl: another-%.scad another.scad
$(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D 'what="body.label"' -o "$@" "$<"
+another-%-body-scale.stl: another-%.scad another.scad
+ $(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D 'what="body.scale"' -o "$@" "$<"
another-%-lever.stl: another-%.scad another.scad
$(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D 'what="lever"' -o "$@" "$<"
another-%-knob.stl: another-%.scad another.scad
$(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D 'what="knob"' -o "$@" "$<"
another-%-knob-label.stl: another-%.scad another.scad
$(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D 'what="knob.label"' -o "$@" "$<"
another-%-springpad.stl: another-%.scad another.scad
$(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D 'what="springpad"' -o "$@" "$<"
multiswitch: multiswitch.c8r.scad $(addsuffix .stl,$(addprefix multiswitch-embeddest-,2 3 4 5 6))
multiswitch-embeddest-%.stl: multiswitch-embeddest.scad
$(OPENSCAD_BIN) $(OPENSCAD_FLAGS) -D inputs=$* -o "$@" "$<"
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
${OPENSCAD_BIN} ${OPENSCAD_FLAGS} -o "$@" "$<"