From b4c42c12319e5304d22ab18e0eef20fe1ec6c008 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 2 Aug 2012 18:35:26 +0100 Subject: [PATCH] Makefile for noninteractive processing --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile 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 $@ + -- 2.30.2