X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=Makefile;h=4afba5d42848dca8a22d88a433b96a4b8e94a3cd;hp=af3f76d779b9c460164c520595c1c90477859616;hb=08d58c92fa517c6a62ed31af40182cc135c9c6db;hpb=2f3192186dfa30aba68ad655ac22fc63ca819f3a diff --git a/Makefile b/Makefile index af3f76d..4afba5d 100644 --- a/Makefile +++ b/Makefile @@ -3,30 +3,65 @@ HRR=/home/reprap SLIC3R=$(HRR)/Slic3r/bin/slic3r SKEINFORGE=python $(HRR)/reprappro-software.git/skeinforge/skeinforge_application/skeinforge_utilities/skeinforge_craft.py -CONFIG=slic3r-config.ini +CWD := $(shell pwd) +PLAY ?= $(CWD) -AUTO_TOPLEVELS := $(foreach m, filamentspool, $(shell ./toplevel-find $m)) +CONFIG=$(PLAY)/slic3r-config.ini -scads: $(addsuffix .scad, $(AUTO_TOPLEVELS)) -stls: $(addsuffix .stl, $(AUTO_TOPLEVELS)) +USING_AUTOS ?= filamentspool xeno-drivebay-bracket dungeonquest-cone anke-gps-bracket cable-hole-trunking-cover anglepoise-neck crossbar-computer-led-mount wardrobe-hook +AUTO_TOPLEVELS := $(foreach m,$(USING_AUTOS),$(shell $(PLAY)/toplevel-find $m)) -default: +AUTO_INCS = funcs.scad -%.stl: %.scad - openscad -o $@ $< +default: autoincs scads -%.gcode: $(CONFIG) %.stl - $(SLIC3R) --load $^ --output $@ +autoincs: $(AUTO_INCS) +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 $*)) + +-include .*.d + +%.stl: %.scad $(AUTO_INCS) + 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-sd: %.gcode + mount /media/sd + cp $^ /media/sd/JOB.G + sleep 0.5 + umount /media/sd + +%: %.cpp + cpp -nostdinc -P <$< >$@.tmp && mv -f $@.tmp $@ #%.gcode: %.stl # $(SKEINFORGE) $< %.gcode: manual-gcode-generator %.m-g - ./$^ >$@.new && mv -f $@.new $@ + $(PLAY)/$^ >$@.tmp && mv -f $@.tmp $@ -dovecliptest.stl: doveclip.scad +dovecliptest.stl: doveclip.scad $(AUTO_INCS) -%.scad: toplevel-make Makefile toplevel-find +%.auto.scad: $(PLAY)/toplevel-make Makefile $(PLAY)/toplevel-find @echo ' write $@' - ./$< $@ >$@.new - @mv -f $@.new $@ + $< $@ >$@.tmp + @mv -f $@.tmp $@ + +.PRECIOUS: %.stl %.gcode + +clean: + rm -f *~ *.stl *.auto.scad *.gcode .*.d $(AUTO_INCS)