aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorElena of Valhalla'' Grandi <valhalla@trueelena.org>2014-03-10 20:15:29 +0100
committerElena of Valhalla'' Grandi <valhalla@trueelena.org>2014-03-10 20:15:29 +0100
commit31f86c7adbdca88b34986361782bf329903bfa29 (patch)
tree96f0ac24bb2331c01d7023f758deed83e47b4ff4 /Makefile
parenta7637c582c127ab43f489a3cdaa499aa685099e2 (diff)
Fixed suite die and gcode generation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 7 insertions, 4 deletions
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