X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=Makefile;h=612f45dc569798b7a8d74b49dd52760c7064b603;hp=628cbf1b5daf70fae90a1dfa614e652726c259a6;hb=12a6dcfdb843643da3c0b237c10b02e43ee25ab8;hpb=b4c42c12319e5304d22ab18e0eef20fe1ec6c008 diff --git a/Makefile b/Makefile index 628cbf1..612f45d 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,161 @@ +# reprap-objects Makefile +# +# Build scripts for various 3D designs +# Copyright 2012-2016 Ian Jackson +# +# This work is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This work is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this work. If not, see . + HRR=/home/reprap SLIC3R=$(HRR)/Slic3r/bin/slic3r +SKEINFORGE=python $(HRR)/reprappro-software.git/skeinforge/skeinforge_application/skeinforge_utilities/skeinforge_craft.py + +CWD := $(shell pwd) +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 knifeblock pandemic-counter pattress-boxes-3-cover +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)) + +%.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 $@ + +AUTOBASE=$(shell echo $(1) | perl -pe 's/,\w+\.auto$$//') + +%.gcode: %.stl $(CONFIG) + $(SLIC3R) --load $(CONFIG) \ + --ignore-nonexistent-config \ + --load $(call AUTOBASE,$*).slic3r \ + --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 $@ + +funcs.scad: + +#%.gcode: %.stl +# $(SKEINFORGE) $< + +%.gcode: manual-gcode-generator %.m-g + $(PLAY)/$^ >$@.tmp && mv -f $@.tmp $@ + +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: $(PANDEMICCOUNTER_DXFS) +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 $@ + +PANDEMICQUARANTINES_NUMBERS=1 2 +PANDEMICQUARANTINES_DXFS=$(foreach l,$(PANDEMICQUARANTINES_NUMBERS), \ + pandemic-quarantine-l$l.dxf) + +pandemic-quarantine-numbers: $(PANDEMICQUARANTINES_DXFS) +pandemic-quarantine%.stl: $(PANDEMICQUARANTINES_DXFS) + +.PRECIOUS: pandemic-quarantine-l%.eps +pandemic-quarantine-l%.eps: pandemic-quarantine-numbers.fig + fig2dev -D +$(notdir $*) -L eps <$< >$@.tmp + @mv -f $@.tmp $@ + +SCREWRECESSTEST_SIZES= 2 3 4 5 6 +SCREWRECESSTEST_DXFS=$(foreach s,$(SCREWRECESSTEST_SIZES), \ + screw-recess-test-number-s$s.dxf) + +screw-recess-test-number-s%.fig: screw-recess-test-number.fig.pl + ./$< $* >$@.tmp && mv -f $@.tmp $@ + +screw-recess-test-number-s%.eps: screw-recess-test-number-s%.fig + fig2dev -L eps <$< >$@.tmp + @mv -f $@.tmp $@ + +screw-recess-test-numbers screw-recess-test.stl: $(SCREWRECESSTEST_DXFS) + +question-question.eps: question-question.fig + fig2dev -L eps <$< >$@.tmp + @mv -f $@.tmp $@ + +question-token.stl: question-question.dxf + +.PRECIOUS: $(SCREWRECESSTEST_DXFS) $(SCREWRECESSTEST_DXFS) \ + $(foreach s,$(SCREWRECESSTEST_SIZES), \ + screw-recess-test-number-s$s.fig \ + screw-recess-test-number-s$s.eps) + +%.dxf: %.eps + pstoedit -dt -f "dxf: -polyaslines -mm" $< $@ -default: +%: %.pl + ./$< >$@.tmp && mv -f $@.tmp $@ -%.stl: %.scad - openscad -o $@ $< +.PRECIOUS: %.auto.scad +%.auto.scad: $(PLAY)/toplevel-make Makefile $(PLAY)/toplevel-find + @echo ' write $@' + $< $@ >$@.tmp + @mv -f $@.tmp $@ -%.gcode: %.stl - $(SLIC3R) --load slic3r-config.ini $< --output $@ +.PRECIOUS: %.stl %.gcode %.eps %.dxf +clean: + rm -f *~ *.stl *.auto.scad *.gcode .*.d $(AUTO_INCS)