chiark / gitweb /
topeak-seatstay-lock: wip fix rim tube: make new Demo
[reprap-play.git] / Makefile
index a5e5278c54d9c6d643999ccf3ac443a5e1944f50..4afba5d42848dca8a22d88a433b96a4b8e94a3cd 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,9 +8,14 @@ PLAY ?= $(CWD)
 
 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,11 +24,9 @@ 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
@@ -36,6 +39,12 @@ default:
                        --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 $@
 
@@ -45,7 +54,7 @@ default:
 %.gcode:       manual-gcode-generator %.m-g
                $(PLAY)/$^ >$@.tmp && mv -f $@.tmp $@
 
-dovecliptest.stl: doveclip.scad
+dovecliptest.stl: doveclip.scad $(AUTO_INCS)
 
 %.auto.scad: $(PLAY)/toplevel-make Makefile $(PLAY)/toplevel-find
                @echo ' write $@'
@@ -55,4 +64,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)