1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2025-04-21 12:27:27 +03:00

cad/test1/: experiment with Free scripted CAD systems (OpenSCAD and Cadmium)

This commit is contained in:
Werner Almesberger
2011-07-22 19:31:14 -03:00
parent c0395dc4c9
commit 2db4c1a3a8
4 changed files with 717 additions and 0 deletions

15
cad/test1/Makefile Normal file
View File

@@ -0,0 +1,15 @@
OUT=scad.stl cadmium.stl
.PHONY: all clean
all: $(OUT)
scad.stl: button.scad
time openscad -s $@ $<
cadmium.stl: button.py
time ./$<
mv botton.stl $@
clean:
rm -f $(OUT)