diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2015-11-10 17:52:31 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2015-11-10 17:52:31 +0100 |
commit | 8e3d79a1f945007eefce26363eeb540dd6cf2ad9 (patch) | |
tree | 0c70cc5e7c74539b4cd96ac1c382887f2efff5cf /Makefile | |
parent | 1696f8a6e701fed26854450a0fd364a8c68381e1 (diff) |
Updated Makefile and slic3r config
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -15,12 +15,12 @@ all: $(STL_TARGETS) gcode: $(GCODE_TARGETS) -$(BUILDDIR)/%.stl: %.scad +$(BUILDDIR)/%.stl: %.scad lib/* mkdir -p ${BUILDDIR} - openscad -o $@ $^ + openscad -o $@ $< -$(BUILDDIR)/%.gcode: %.stl - ${SLIC3R} --load ${CONFDIR}/connectors.ini $^ +$(BUILDDIR)/%.gcode: %.stl ${CONFDIR}/connectors.ini + ${SLIC3R} --load ${CONFDIR}/connectors.ini $< clean: rm -f ${BUILDDIR}/*.stl ${BUILDDIR}/*.gcode |