summaryrefslogtreecommitdiff
path: root/readme.creole
diff options
context:
space:
mode:
authorMichael Schwarz <michi.schwarz@gmail.com>2015-03-09 18:29:19 +0100
committerMichael Schwarz <michi.schwarz@gmail.com>2015-03-09 18:29:49 +0100
commitdc6284662bd4d42280e82833ef6350c3c096ae8b (patch)
treeac7617030986314255b2a7e81d7c2d0e4709e3f3 /readme.creole
parentff502f1d22de79648abc2005f83b7d462791ab9a (diff)
downloadpogojig-dc6284662bd4d42280e82833ef6350c3c096ae8b.tar.gz
pogojig-dc6284662bd4d42280e82833ef6350c3c096ae8b.tar.bz2
pogojig-dc6284662bd4d42280e82833ef6350c3c096ae8b.zip
Added makefile targets to build the project to a certain step.
Diffstat (limited to 'readme.creole')
-rw-r--r--readme.creole37
1 files changed, 26 insertions, 11 deletions
diff --git a/readme.creole b/readme.creole
index e8a5a5b..84e438a 100644
--- a/readme.creole
+++ b/readme.creole
@@ -77,16 +77,6 @@ use <filename>
OpenSCAD files may be compiled to STL and used from other OpenSCAD files at the same time. Please see the [http://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Print_version|manual] for details and on how to use OpenSCAD in general.
-=== Settings used for compilation
-
-The quality of the DXF export can be specified by creating a file called `settings.mk` in the same directory as the makefile. Setting `DXF_FLATNESS` to a smaller value (which defaults to `0.1`) creates a shape that more closely follows curved parts of the exported shapes.
-
-{{{
-# Specify how far the exported approximation may deviate from the actual shape. The default is 0.1.
-DXF_FLATNESS := 0.02
-}}}
-
-
== Generating Source files
This template includes support automatically generated source files. Currently supported for inclusion in the build process are OpenSCAD and SVG files. This works by editing the `generate_sources.sh` script.
@@ -98,7 +88,32 @@ The script defines a function `generate_file()`, which should be called in the r
To compile the whole project, run `make` from the directory in which this readme is. This will generate all sources files, if any, process all SVG files and produce an STL file for each OpenSCAD source file whose name does not start with `_`. Individual files may be created or updated by passing their names to the make command, as usual.
-To remove all generated files, run `make clean`.
+
+=== Makefile targets
+
+These are all makefile targets which are not the path of a single file to build:
+
+- `all`: This target will build all files that can be built from all source files. This is the default target when just running `make`.
+
+- `clean`: Removes all built files [1].
+
+- `generated`: Generates all files generated by `generate_sources.sh`.
+
+- `dxf`: Converts all SVG files to DXF files.
+
+- `stl`: Compiles all OpenSCAD files to STL files.
+
+[1]: This will not remove files for which the source file was removed. There is no simple way to detect whether a file was previously built from a source file or was placed in the `src` directory manually.
+
+
+=== Settings used for compilation
+
+The quality of the DXF export can be specified by creating a file called `settings.mk` in the same directory as the makefile. Setting `DXF_FLATNESS` to a smaller value (which defaults to `0.1`) creates a shape that more closely follows curved parts of the exported shapes.
+
+{{{
+# Specify how far the exported approximation may deviate from the actual shape. The default is 0.1.
+DXF_FLATNESS := 0.02
+}}}
=== Dependency tracking