Unidiff1 files changed, 1 insertions, 1 deletions
|
diff --git a/Makefile b/Makefile index b72584f..c82e15a 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -1,16 +1,16 @@ |
1 | -include Makefile.local |
1 | -include Makefile.local |
2 | |
2 | |
3 | OPENSCAD_APP?=/Applications/OpenSCAD.app |
3 | OPENSCAD_APP?=/Applications/OpenSCAD.app |
4 | OPENSCAD_BIN?=${OPENSCAD_APP}/Contents/MacOS/OpenSCAD |
4 | OPENSCAD_BIN?=${OPENSCAD_APP}/Contents/MacOS/OpenSCAD |
5 | OPENSCAD_FLAGS=-D draft=false |
5 | OPENSCAD_FLAGS=-D draft=false |
6 | |
6 | |
7 | default: fanduct-circular.stl fanduct-3jets.stl fanduct-dual.stl fanduct-dual-jets.stl |
7 | default: fanduct-circular.stl fanduct-jets.stl fanduct-dual.stl fanduct-dual-jets.stl |
8 | |
8 | |
9 | clean: |
9 | clean: |
10 | rm -f *.stl |
10 | rm -f *.stl |
11 | |
11 | |
12 | fanduct-%.stl: fanduct-%.scad fanduct.scad |
12 | fanduct-%.stl: fanduct-%.scad fanduct.scad |
13 | |
13 | |
14 | |
14 | |
15 | %.stl: %.scad |
15 | %.stl: %.scad |
16 | ${OPENSCAD_BIN} ${OPENSCAD_FLAGS} -o "$@" "$<" |
16 | ${OPENSCAD_BIN} ${OPENSCAD_FLAGS} -o "$@" "$<" |
|