chiark / gitweb /
Makefile: introduce PYLIBS
[moebius3.git] / Makefile
1
2 all: moebius-core.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 AUTO_TOPLEVELS := $(foreach m,$(USING_AUTOS),$(shell $(PLAY)/toplevel-find $m))
15
16 autoincs:       $(AUTO_INCS)
17 scads:          $(addsuffix .auto.scad, $(AUTO_TOPLEVELS))
18 stls:           $(addsuffix .auto.stl, $(AUTO_TOPLEVELS))
19
20 %.auto.scads: %.scad
21         $(MAKE) $(addsuffix .auto.scad, $(shell $(PLAY)/toplevel-find $*))
22 %.auto.stls:
23         $(MAKE) $(addsuffix .auto.stl, $(shell $(PLAY)/toplevel-find $*))
24
25 .PRECIOUS: %.auto.scad
26 %.auto.scad: $(PLAY)/toplevel-make Makefile $(PLAY)/toplevel-find
27                 @echo ' write $@'
28                 $< $@ >$@.tmp
29                 @mv -f $@.tmp $@
30
31 .PRECIOUS:      %.stl %.gcode %.eps %.dxf
32