From 600c21f00b41eec562b2c1a23adb13d500c34a48 Mon Sep 17 00:00:00 2001 From: Elena of Valhalla'' Grandi Date: Fri, 6 Dec 2013 12:47:19 +0100 Subject: Saucers --- Makefile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3