From f9d5958260bb6168faeea051ba0f901a9fe1824c Mon Sep 17 00:00:00 2001 From: Elena of Valhalla'' Grandi Date: Sun, 22 Jun 2014 10:46:28 +0200 Subject: New source layout; added d6 and pips faces --- 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..943c209 --- /dev/null +++ b/Makefile @@ -0,0 +1,27 @@ + +BUILDDIR = build +CONFDIR = conf +SRCDIR = designs + +SLIC3R = ~/opt/Slic3r/bin/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}/dice.ini $^ + +clean: + rm -f ${BUILDDIR}/*.stl ${BUILDDIR}/*.gcode + -- cgit v1.2.3