mk: Add check target

This commit is contained in:
Daniel Gröber 2021-04-16 07:57:09 +02:00
parent 98be6f253c
commit 3f630e71a0

View file

@ -1,3 +1,8 @@
check: $(patsubst %.zone,%.check,$(wildcard *.zone))
%.check: %.zone FORCE
ldns-read-zone $<
sign: $(patsubst %,%.sig,$(wildcard *.zone))
%.sig: %
@ -8,3 +13,6 @@ upload:
clean:
rm -f *.sig
FORCE:
.PHONY: FORCE