aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorElena of Valhalla'' Grandi <valhalla@trueelena.org>2014-03-11 21:04:00 +0100
committerElena of Valhalla'' Grandi <valhalla@trueelena.org>2014-03-11 21:04:00 +0100
commit9a2abeed93a90cf19f83b608e1ce6f5d8b619e8e (patch)
tree020df1d741a6b709efa0c44cbeddafc8a854c8ee /Makefile
parent31f86c7adbdca88b34986361782bf329903bfa29 (diff)
Improved gcode generation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 70e0a9e..fc3de67 100644
--- a/Makefile
+++ b/Makefile
@@ -78,7 +78,7 @@ gcode: tiles coins dice pawns saucers pyramids
for T in ${DESTDIR}/tile*.stl; do \
${SLIC3R} --load ${CONFDIR}/tiles.ini $$T; \
done
- for T in ${DESTDIR}/coin*.stl ${DESTDIR}/saucer*.stl; do \
+ for T in ${DESTDIR}/coin*.stl; do \
${SLIC3R} --load ${CONFDIR}/coins.ini $$T; \
done
for T in ${DESTDIR}/die*.stl ${DESTDIR}/suite_die*.stl; do \
@@ -87,6 +87,9 @@ gcode: tiles coins dice pawns saucers pyramids
for T in ${DESTDIR}/pawn*.stl ${DESTDIR}/pawn*.stl; do \
${SLIC3R} --load ${CONFDIR}/pawns.ini $$T; \
done
+ for T in ${DESTDIR}/saucer*.stl; do \
+ ${SLIC3R} --load ${CONFDIR}/saucers.ini $$T; \
+ done
for T in ${DESTDIR}/pyramid*.stl; do \
${SLIC3R} --load ${CONFDIR}/pyramids.ini $$T; \
done