chiark / gitweb /
filamenttrestle kit for test #5
[reprap-play.git] / Makefile
index 17510585119a47760056cfc01c38ec14db7b5e75..2c677dc386c8b6ed1c2528ef20bc5b8a46da1b13 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -14,16 +14,24 @@ AUTO_TOPLEVELS := $(foreach m,$(USING_AUTOS),$(shell $(PLAY)/toplevel-find $m))
 scads:         $(addsuffix .auto.scad, $(AUTO_TOPLEVELS))
 stls:          $(addsuffix .auto.stl, $(AUTO_TOPLEVELS))
 
+%.auto.scads:
+       $(MAKE) $(addsuffix .auto.scad, $(shell $(PLAY)/toplevel-find $*))
+%.auto.stls:
+       $(MAKE) $(addsuffix .auto.stl, $(shell $(PLAY)/toplevel-find $*))
+
 default:
 
 -include .*.d
 
 %.stl:         %.scad
-               openscad -d .$@.d -o $*.tmp.stl $<
-               @mv -f $*.tmp.stl $@
+               openscad -d .$@.d.tmp -o $*.tmp.stl $<
+               @rm -f $@
+               @sed -e 's/\.tmp\.stl:/.stl:/' <.$@.d.tmp >.$@.d
+               @rm .$@.d.tmp
+               mv -f $*.tmp.stl $@
 
 %.gcode:       $(CONFIG) %.stl
-               $(SLIC3R) --load $^ --output $@.tmp
+               $(SLIC3R) --load $^ --ignore-nonexistent-config --load $*.slic3r --output $@.tmp
                @mv -f $@.tmp $@
 
 #%.gcode:      %.stl