X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=Makefile;h=339d710b25547b9755597b7a6020699ef7db0551;hb=4fb988a551049dac5f11f562415340d8743dd8e5;hp=17510585119a47760056cfc01c38ec14db7b5e75;hpb=c48402da50adbd9ee807ccd78835187a1af3f950;p=reprap-play.git diff --git a/Makefile b/Makefile index 1751058..339d710 100644 --- a/Makefile +++ b/Makefile @@ -8,22 +8,32 @@ PLAY ?= $(CWD) CONFIG=slic3r-config.ini -USING_AUTOS ?= filamentspool +USING_AUTOS ?= filamentspool xeno-drivebay-bracket dungeonquest-cone anke-gps-bracket 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 $@ - -%.gcode: $(CONFIG) %.stl - $(SLIC3R) --load $^ --output $@.tmp + 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: %.stl $(CONFIG) + $(SLIC3R) --load $(CONFIG) \ + --ignore-nonexistent-config --load $*.slic3r \ + --output $@.tmp $< @mv -f $@.tmp $@ #%.gcode: %.stl