Root/cad/test1/Makefile

1OUT=scad.stl cadmium.stl
2
3.PHONY: all clean
4
5all: $(OUT)
6
7scad.stl: button.scad
8        time openscad -s $@ $<
9
10cadmium.stl: button.py
11        time ./$<
12        mv button.stl $@
13
14clean:
15        rm -f $(OUT)
16

Archive Download this file

Branches:
master



interactive