chiark / gitweb /
size-tests - wip - size tests initial version ready for test
[reprap-play.git] / Makefile
index 628cbf1b5daf70fae90a1dfa614e652726c259a6..881588b98529a9c85a47e44470ef609df2143776 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,11 +2,15 @@
 HRR=/home/reprap
 SLIC3R=$(HRR)/Slic3r/bin/slic3r
 
+CONFIG=slic3r-config.ini
+
 default:
 
 %.stl:         %.scad
                openscad -o $@ $<
 
-%.gcode:       %.stl
-               $(SLIC3R) --load slic3r-config.ini $< --output $@
+%.gcode:       $(CONFIG) %.stl
+               $(SLIC3R) --load $^ --output $@
 
+%.gcode:       manual-gcode-generator %.m-g
+               ./$^ >$@.new && mv -f $@.new $@