-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -15,5 +15,5 @@ clean: stl-another-%: - $(MAKE) another-$*-{body,body-label,lever,knob,springpad}.stl + $(MAKE) another-$*-{body,body-label,lever,knob,knob-label,springpad}.stl another-%-body.stl: another-%.scad another.scad @@ -25,4 +25,6 @@ another-%-lever.stl: another-%.scad another.scad 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 "$@" "$<" |