diff options
author | Jan Huwald <jh@sotun.de> | 2015-02-19 15:30:55 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2015-02-19 15:30:55 (GMT) |
commit | b6fcfb4e3b47cb197c273293340d52450245617d (patch) | |
tree | b4261d260cd41fc8fe638717e532f35c0684c03b /Makefile | |
parent | e6e0a0a8ca1f2869de8e1ef421bbc10bdc46edec (diff) |
rework: front
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f32bb3d --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +include $(wildcard *.dep) + +%.gcode: %.stl + cura -s $< -o $@ + +%.stl: %.scad + openscad $< -o $@ -d $*.dep + +clean: + rm *.dep *.stl |