From 875272a03f4d1e9c22baddeea49ce1f7828a0069 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 26 Dec 2015 00:40:00 +0000 Subject: [PATCH] Makefile: fix "mixed implicit and normal rules" Fix Makefile:96: *** mixed implicit and normal rules: deprecated syntax by splitting these two lines up just as for pandemic-counter*, above. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 322b17d..89394a2 100644 --- a/Makefile +++ b/Makefile @@ -93,8 +93,8 @@ PANDEMICQUARANTINES_NUMBERS=1 2 PANDEMICQUARANTINES_DXFS=$(foreach l,$(PANDEMICQUARANTINES_NUMBERS), \ pandemic-quarantine-l$l.dxf) -pandemic-quarantine-numbers pandemic-quarantine%.stl: \ - $(PANDEMICQUARANTINES_DXFS) +pandemic-quarantine-numbers: $(PANDEMICQUARANTINES_DXFS) +pandemic-quarantine%.stl: $(PANDEMICQUARANTINES_DXFS) .PRECIOUS: pandemic-quarantine-l%.eps pandemic-quarantine-l%.eps: pandemic-quarantine-numbers.fig -- 2.30.2