From eef01b05f5c7cab0613d83bfbc6738354a2a862d Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Wed, 16 Apr 2014 22:15:54 +0200 Subject: Makefile: added gcode and cleanup targets --- Makefile | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 15dbb0c..2cb50fe 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,27 @@ -BUILDDIR=build -SRCDIR=parts +BUILDDIR = build +CONFDIR = conf +SRCDIR = parts -VPATH = $(SRCDIR) +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}/connectors.ini $^ + +clean: + rm -f ${BUILDDIR}/*.stl ${BUILDDIR}/*.gcode + -- cgit v1.2.3