Unidiff1 files changed, 1 insertions, 1 deletions
|
diff --git a/Makefile b/Makefile index b6ac877..998b0ac 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -1,15 +1,15 @@ |
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 | |
5 | |
6 | default: fanduct-circular.stl fanduct-3jets.stl |
6 | default: fanduct-circular.stl fanduct-3jets.stl fanduct-dual.stl |
7 | |
7 | |
8 | clean: |
8 | clean: |
9 | rm -f *.stl |
9 | rm -f *.stl |
10 | |
10 | |
11 | fanduct-%.stl: fanduct-%.scad fanduct.scad |
11 | fanduct-%.stl: fanduct-%.scad fanduct.scad |
12 | |
12 | |
13 | |
13 | |
14 | %.stl: %.scad |
14 | %.stl: %.scad |
15 | ${OPENSCAD_BIN} ${OPENSCAD_FLAGS} -o "$@" "$<" |
15 | ${OPENSCAD_BIN} ${OPENSCAD_FLAGS} -o "$@" "$<" |
|