X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=Makefile;h=d667e227ea737817417e323eb97b1efa28968ba7;hp=eaf870549bfca9fec5e1035d1334954ebca74a8c;hb=1502442426fbfc9fcb79b98cc5cd25376726f972;hpb=83d1b009ce82069c1d306ffc039ec44720ea62a5 diff --git a/Makefile b/Makefile index eaf8705..d667e22 100644 --- a/Makefile +++ b/Makefile @@ -6,11 +6,16 @@ SKEINFORGE=python $(HRR)/reprappro-software.git/skeinforge/skeinforge_applicatio CWD := $(shell pwd) PLAY ?= $(CWD) -CONFIG=slic3r-config.ini +CONFIG=$(PLAY)/slic3r-config.ini -USING_AUTOS ?= filamentspool xeno-drivebay-bracket dungeonquest-cone anke-gps-bracket cable-hole-trunking-cover anglepoise-neck crossbar-computer-led-mount +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)) +AUTO_INCS = funcs.scad + +default: autoincs scads + +autoincs: $(AUTO_INCS) scads: $(addsuffix .auto.scad, $(AUTO_TOPLEVELS)) stls: $(addsuffix .auto.stl, $(AUTO_TOPLEVELS)) @@ -19,30 +24,40 @@ stls: $(addsuffix .auto.stl, $(AUTO_TOPLEVELS)) %.auto.stls: $(MAKE) $(addsuffix .auto.stl, $(shell $(PLAY)/toplevel-find $*)) -default: - -include .*.d -%.stl: %.scad +%.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 %.slic3r $(CONFIG) +%.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 $(PLAY)/$^ >$@.tmp && mv -f $@.tmp $@ -dovecliptest.stl: doveclip.scad +dovecliptest.stl: doveclip.scad $(AUTO_INCS) + +%: %.pl + ./$< >$@.tmp && mv -f $@.tmp $@ %.auto.scad: $(PLAY)/toplevel-make Makefile $(PLAY)/toplevel-find @echo ' write $@' @@ -52,4 +67,4 @@ dovecliptest.stl: doveclip.scad .PRECIOUS: %.stl %.gcode clean: - rm -f *~ *.stl *.auto.scad *.gcode .*.d + rm -f *~ *.stl *.auto.scad *.gcode .*.d $(AUTO_INCS)