summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b64fb39..6b18249 100644
--- a/Makefile
+++ b/Makefile
@@ -36,15 +36,22 @@ pawns:
-D suite=\"$$SUITE\" src/pawn.scad; \
done
-gcode: tiles coins dice
+saucers:
+ mkdir -p ${DESTDIR}
+ for SUITE in suns moons crowns arms; do \
+ openscad -o ${DESTDIR}/saucer-$$SUITE.stl \
+ -D suite=\"$$SUITE\" src/saucer.scad; \
+ done
+
+gcode: tiles coins dice saucers
for T in ${DESTDIR}/tile*; do \
${SLIC3R} --load ${CONFDIR}/tiles.ini $$T; \
done
- for T in ${DESTDIR}/coin*; do \
+ for T in ${DESTDIR}/coin* ${DESTDIR}/saucer*; do \
${SLIC3R} --load ${CONFDIR}/coins.ini $$T; \
done
for T in ${DESTDIR}/die*; do \
${SLIC3R} --load ${CONFDIR}/dice.ini $$T; \
done
-all: tiles coins dice pawns
+all: tiles coins dice pawns saucers