mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-15 17:59:22 +02:00
16 lines
185 B
Makefile
16 lines
185 B
Makefile
|
OUT=scad.stl cadmium.stl
|
||
|
|
||
|
.PHONY: all clean
|
||
|
|
||
|
all: $(OUT)
|
||
|
|
||
|
scad.stl: button.scad
|
||
|
time openscad -s $@ $<
|
||
|
|
||
|
cadmium.stl: button.py
|
||
|
time ./$<
|
||
|
mv button.stl $@
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OUT)
|