From 1cdeb59d0fe45d4a6ab9eb52f7d6f583ebf99a63 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 29 Sep 2019 15:14:03 +0200 Subject: Fix missing deps in renderer makefile --- renderer/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'renderer') diff --git a/renderer/Makefile b/renderer/Makefile index 0c6f340..a27e79a 100644 --- a/renderer/Makefile +++ b/renderer/Makefile @@ -12,21 +12,21 @@ out.zip: out/jig.stl out/pcb_shape.dxf out/kicad src/input.preprocessed.dxf: src/input.preprocessed.svg support/inkscape_exporter.py $< $@ -out/pcb_shape.dxf: src/pcb_shape.scad src/input.preprocessed.dxf out +out/pcb_shape.dxf: src/pcb_shape.scad src/input.preprocessed.dxf + mkdir -p out $(OPENSCAD) -o $@ $< out/jig.stl: src/jig.scad src/input.preprocessed.dxf + mkdir -p out $(OPENSCAD) -o $@ $< out/kicad: input.svg out/pcb_shape.dxf + mkdir -p out support/generate_kicad.py $^ $@ src/input.preprocessed.svg: input.svg support/inkscape_svg_filter_layers.py $< $@ --only --name "Test Points" "Mounting Holes" "Grip Slots" "Outline" -out: - mkdir -p out - .PHONY: clean clean: rm -f src/input.preprocessed.dxf -- cgit