From 31f86c7adbdca88b34986361782bf329903bfa29 Mon Sep 17 00:00:00 2001 From: Elena of Valhalla'' Grandi Date: Mon, 10 Mar 2014 20:15:29 +0100 Subject: Fixed suite die and gcode generation --- Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index db4dc17..70e0a9e 100644 --- a/Makefile +++ b/Makefile @@ -35,14 +35,14 @@ coins: dice: mkdir -p ${DESTDIR} for SUITE in ${SUITES}; do \ - for S in 12 16; do \ + for S in 12 15; do \ openscad -o ${DESTDIR}/die-$$SUITE-$$S.stl \ -D suite=\"$$SUITE\" -D s=$$S src/die.scad; \ done \ done - for S in 12 16; do \ + for S in 12 15; do \ openscad -o ${DESTDIR}/suite_die-$$S.stl \ - -D suite='["'`echo ${SUITES} | sed 's/ /","/g'`'"]' \ + -D suites='["'`echo ${SUITES} | sed 's/ /","/g'`'"]' \ -D s=$$S src/suite_die.scad; \ done @@ -74,7 +74,7 @@ pyramids: done \ done -gcode: tiles coins dice saucers pyramids +gcode: tiles coins dice pawns saucers pyramids for T in ${DESTDIR}/tile*.stl; do \ ${SLIC3R} --load ${CONFDIR}/tiles.ini $$T; \ done @@ -84,6 +84,9 @@ gcode: tiles coins dice saucers pyramids for T in ${DESTDIR}/die*.stl ${DESTDIR}/suite_die*.stl; do \ ${SLIC3R} --load ${CONFDIR}/dice.ini $$T; \ done + for T in ${DESTDIR}/pawn*.stl ${DESTDIR}/pawn*.stl; do \ + ${SLIC3R} --load ${CONFDIR}/pawns.ini $$T; \ + done for T in ${DESTDIR}/pyramid*.stl; do \ ${SLIC3R} --load ${CONFDIR}/pyramids.ini $$T; \ done -- cgit v1.2.3