mirror of
https://github.com/tenderlove/initial-v.git
synced 2024-11-22 14:24:59 +00:00
10 lines
193 B
Makefile
10 lines
193 B
Makefile
OPENSCAD = /Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD
|
|
|
|
%.stl: housing.scad
|
|
$(OPENSCAD) -D'rendering="$(basename $@)"' $< -o $@
|
|
|
|
all: top.stl middle.stl bottom.stl
|
|
|
|
clean:
|
|
rm -f *.stl
|