diff options
author | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2014-03-11 21:04:00 +0100 |
---|---|---|
committer | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2014-03-11 21:04:00 +0100 |
commit | 9a2abeed93a90cf19f83b608e1ce6f5d8b619e8e (patch) | |
tree | 020df1d741a6b709efa0c44cbeddafc8a854c8ee /Makefile | |
parent | 31f86c7adbdca88b34986361782bf329903bfa29 (diff) |
Improved gcode generation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |