Skip to content
Revar Desmera edited this page Aug 30, 2014 · 9 revisions

Generating STL Files

OS X:

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

Linux:

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

Windows:

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"
Clone this wiki locally