chiark / gitweb /
screw-recess-test: make shaftlen a parameter (nfc)
[reprap-play.git] / Makefile
index d667e227ea737817417e323eb97b1efa28968ba7..937bcc9dc95ceeea0c2cb096f35c5e99c1af6afb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ 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 wardrobe-hook
+USING_AUTOS ?= filamentspool xeno-drivebay-bracket dungeonquest-cone anke-gps-bracket cable-hole-trunking-cover anglepoise-neck crossbar-computer-led-mount wardrobe-hook knifeblock pandemic-counter
 AUTO_TOPLEVELS := $(foreach m,$(USING_AUTOS),$(shell $(PLAY)/toplevel-find $m))
 
 AUTO_INCS = funcs.scad
@@ -33,9 +33,13 @@ stls:                $(addsuffix .auto.stl, $(AUTO_TOPLEVELS))
                @rm .$@.d.tmp
                mv -f $*.tmp.stl $@
 
+AUTOBASE=$(shell echo $(1) | perl -pe 's/,\w+\.auto$$//')
+
 %.gcode:       %.stl $(CONFIG)
                $(SLIC3R) --load $(CONFIG) \
-                       --ignore-nonexistent-config --load $*.slic3r \
+                       --ignore-nonexistent-config \
+                       --load $(call AUTOBASE,$*).slic3r \
+                       --load $*.slic3r \
                        --output $@.tmp $<
                @mv -f $@.tmp $@
 
@@ -48,6 +52,8 @@ stls:         $(addsuffix .auto.stl, $(AUTO_TOPLEVELS))
 %:             %.cpp
                cpp -nostdinc -P <$< >$@.tmp && mv -f $@.tmp $@
 
+funcs.scad:
+
 #%.gcode:      %.stl
 #              $(SKEINFORGE) $<
 
@@ -56,15 +62,45 @@ stls:               $(addsuffix .auto.stl, $(AUTO_TOPLEVELS))
 
 dovecliptest.stl: doveclip.scad $(AUTO_INCS)
 
+KNIFEBLOCK_KNIVES= 0 1 2
+KNIFEBLOCK_TEMPLATES= bl hl
+KNIFEBLOCK_TEMPLATE_FILES=\
+       $(foreach k,$(KNIFEBLOCK_KNIVES), \
+       $(foreach t,$(KNIFEBLOCK_TEMPLATES), \
+       knifeblock-knives-t$k$t.dxf))
+
+knifeblock-knives-templates knifeblock.stl: $(KNIFEBLOCK_TEMPLATE_FILES)
+
+.PRECIOUS: knifeblock-knives-t%.dxf
+knifeblock-knives-t%.dxf: knifeblock-knives-filter knifeblock-knives-trace.fig
+               ./$< $(notdir $*) <$(filter %.fig, $^) >$@.tmp.fig
+               fig2dev -D -30 -L eps <$@.tmp.fig >$@.tmp.eps
+               pstoedit -dt -f "dxf: -polyaslines -mm" $@.tmp.eps $@
+
+PANDEMICCOUNTER_LETTERS=30 31 32 33 34 35
+PANDEMICCOUNTER_DXFS=$(foreach l,$(PANDEMICCOUNTER_LETTERS), \
+       pandemic-counter-l$l.dxf)
+
+pandemic-counter-letters pandemic-counter%.stl: $(PANDEMICCOUNTER_DXFS)
+
+.PRECIOUS: pandemic-counter-l%.eps
+pandemic-counter-l%.eps: pandemic-counter-letters.fig
+               fig2dev -D +$(notdir $*) -L eps <$< >$@.tmp
+               @mv -f $@.tmp $@
+
+%.dxf:         %.eps
+               pstoedit -dt -f "dxf: -polyaslines -mm" $< $@
+
 %:             %.pl
                ./$< >$@.tmp && mv -f $@.tmp $@
 
+.PRECIOUS: %.auto.scad
 %.auto.scad: $(PLAY)/toplevel-make Makefile $(PLAY)/toplevel-find
                @echo ' write $@'
                $< $@ >$@.tmp
                @mv -f $@.tmp $@
 
-.PRECIOUS:     %.stl %.gcode
+.PRECIOUS:     %.stl %.gcode %.eps %.dxf
 
 clean:
                rm -f *~ *.stl *.auto.scad *.gcode .*.d $(AUTO_INCS)