From 178b098927b8f5cff30324374a4d46110cc992c8 Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Mon, 20 Jul 2015 16:22:16 +0200 Subject: makefile + basic slic3r conf. --- Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..940c53c --- /dev/null +++ b/Makefile @@ -0,0 +1,27 @@ + +BUILDDIR = build +CONFDIR = conf +SRCDIR = src + +SLIC3R = slic3r + +VPATH = $(SRCDIR):$(BUILDDIR) + +STL_TARGETS = $(patsubst $(SRCDIR)/%.scad,$(BUILDDIR)/%.stl,$(wildcard $(SRCDIR)/*.scad)) +GCODE_TARGETS = $(patsubst $(SRCDIR)/%.scad,$(BUILDDIR)/%.gcode,$(wildcard $(SRCDIR)/*.scad)) + +.PHONY: all gcode clean +all: $(STL_TARGETS) + +gcode: $(GCODE_TARGETS) + +$(BUILDDIR)/%.stl: %.scad + mkdir -p ${BUILDDIR} + openscad -o $@ $^ + +$(BUILDDIR)/%.gcode: %.stl + ${SLIC3R} --load ${CONFDIR}/basic.ini $^ + +clean: + rm -f ${BUILDDIR}/*.stl ${BUILDDIR}/*.gcode + -- cgit v1.2.3