chiark / gitweb /
Revert "mesh: introduce is_extt (nfc)"
[moebius3.git] / Makefile
1
2 all: moebius-core.scad moebius-mesh.scad
3
4 PLAY = /home/reprap/play
5 USING_AUTOS = moebius
6
7 $(shell set -xe; $(PLAY)/commitid.scad.pl >commitid.scad.tmp; cmp commitid.scad.tmp commitid.scad || mv -f commitid.scad.tmp commitid.scad )
8
9 PYLIBS = $(shell echo *.py)
10
11 moebius-core.scad: genscad $(PYLIBS)
12                 ./$< >$@.tmp && mv -f $@.tmp $@
13
14 moebius-mesh.scad: meshscad $(PYLIBS)
15                 ./$< >$@.tmp && mv -f $@.tmp $@
16
17 AUTO_TOPLEVELS := $(foreach m,$(USING_AUTOS),$(shell $(PLAY)/toplevel-find $m))
18
19 autoincs:       $(AUTO_INCS)
20 scads:          $(addsuffix .auto.scad, $(AUTO_TOPLEVELS))
21 stls:           $(addsuffix .auto.stl, $(AUTO_TOPLEVELS))
22
23 %.auto.scads: %.scad
24         $(MAKE) $(addsuffix .auto.scad, $(shell $(PLAY)/toplevel-find $*))
25 %.auto.stls:
26         $(MAKE) $(addsuffix .auto.stl, $(shell $(PLAY)/toplevel-find $*))
27
28 .PRECIOUS: %.auto.scad
29 %.auto.scad: $(PLAY)/toplevel-make Makefile $(PLAY)/toplevel-find
30                 @echo ' write $@'
31                 $< $@ >$@.tmp
32                 @mv -f $@.tmp $@
33
34 .PRECIOUS:      %.stl %.gcode %.eps %.dxf
35