From: Ian Jackson Date: Thu, 2 Aug 2012 17:35:26 +0000 (+0100) Subject: Makefile for noninteractive processing X-Git-Tag: firmware-tested-2012-08-04~2 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=b4c42c12319e5304d22ab18e0eef20fe1ec6c008 Makefile for noninteractive processing --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..628cbf1 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ + +HRR=/home/reprap +SLIC3R=$(HRR)/Slic3r/bin/slic3r + +default: + +%.stl: %.scad + openscad -o $@ $< + +%.gcode: %.stl + $(SLIC3R) --load slic3r-config.ini $< --output $@ +