mk: Add check target
This commit is contained in:
parent
98be6f253c
commit
3f630e71a0
1 changed files with 8 additions and 0 deletions
8
Makefile
8
Makefile
|
@ -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
|
||||
|
|
Reference in a new issue