-
Notifications
You must be signed in to change notification settings - Fork 171
Make
Revar Desmera edited this page Aug 30, 2014
·
9 revisions
The Makefile currently defines $OPENSCAD for building on OS X:
OPENSCAD=/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD
You shouldn't need to change this.
To generate the STL model files, open a terminal to the snappy-reprap directory and type:
make
Under Linux, you will need to edit the Makefile, and change OPENSCAD to:
OPENSCAD=openscad
To generate the STL model files, open a terminal to the snappy-reprap directory and type:
make
Under Windows, you'll probably have to open each *_part.scad
and *_parts.scad
file individually and manually export the STL files.
You may be able to run the makefile under CygWin, if you set OPENSCAD to something like:
OPENSCAD="/Program Files/OpenSCAD/openscad.exe"