From d6af2027d85fe80d19aac3dd7319686c05c2b1fd Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 19 Sep 2015 18:04:35 +0100 Subject: [PATCH] Makefile: fix warning /home/reprap/play/Makefile:84: *** mixed implicit and normal rules: deprecated syntax /home/reprap/play/Makefile:95: *** mixed implicit and normal rules: deprecated syntax --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c2c8972..f754110 100644 --- a/Makefile +++ b/Makefile @@ -81,7 +81,8 @@ PANDEMICCOUNTER_LETTERS=30 31 32 33 34 35 PANDEMICCOUNTER_DXFS=$(foreach l,$(PANDEMICCOUNTER_LETTERS), \ pandemic-counter-l$l.dxf) -pandemic-counter-letters pandemic-counter%.stl: $(PANDEMICCOUNTER_DXFS) +pandemic-counter-letters: $(PANDEMICCOUNTER_DXFS) +pandemic-counter%.stl: $(PANDEMICCOUNTER_DXFS) .PRECIOUS: pandemic-counter-l%.eps pandemic-counter-l%.eps: pandemic-counter-letters.fig -- 2.30.2