From aa5daa178c91e65ef73382f526189d41a42b2651 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Fri, 1 Jul 2016 23:53:47 +0100 Subject: [PATCH] Makefile: Make the dummy zones depend on the configuration. Organization: Straylight/Edgeware From: Mark Wooding --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 81e97d4..802cd43 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ all: DUMMY = refused wrong-ds DUMMYZONES = $(addsuffix .zone,$(DUMMY)) TARGETS += $(DUMMYZONES) -$(DUMMYZONES): %.zone: utils.m4 dummy.in +$(DUMMYZONES): %.zone: utils.m4 config.m4 dummy.in m4 -P -DBASE=$(BASE) >$@.new utils.m4 dummy.in mv $@.new $@ -- [mdw]