chiark / gitweb /
wardrobe-hook: frontbackly version: wip new approach
[reprap-play.git] / Makefile
index 840b9a6270560ceb37b3d6826fbc7591b95b1dce..6a4b9c5f5dcb5a3ff022169e353903449b7ce604 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,18 +3,59 @@ 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)
 
-default:
+CONFIG=$(PLAY)/slic3r-config.ini
 
-%.stl:         %.scad
-               openscad -o $@ $<
+USING_AUTOS ?= filamentspool xeno-drivebay-bracket dungeonquest-cone anke-gps-bracket cable-hole-trunking-cover anglepoise-neck crossbar-computer-led-mount
+AUTO_TOPLEVELS := $(foreach m,$(USING_AUTOS),$(shell $(PLAY)/toplevel-find $m))
 
-%.gcode:       $(CONFIG) %.stl
-               $(SLIC3R) --load $^ --output $@
+AUTO_INCS = funcs.scad
+
+default:       autoincs scads
+
+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 $@
+
+%:             %.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 $(AUTO_INCS)
+
+%.auto.scad: $(PLAY)/toplevel-make Makefile $(PLAY)/toplevel-find
+               @echo ' write $@'
+               $< $@ >$@.tmp
+               @mv -f $@.tmp $@
+
+.PRECIOUS:     %.stl %.gcode
+
+clean:
+               rm -f *~ *.stl *.auto.scad *.gcode .*.d $(AUTO_INCS)