aboutsummaryrefslogtreecommitdiff
path: root/gnunet-signatures/Makefile
blob: 6d953657de601c4aa32c2c56ad89f9c03f04b04e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FILES=gnunet_signatures.h
all: check $(FILES)
check:
	recfix --check registry.rec
distclean:
	rm -f *.tmp
clean:
	rm -f $(FILES) *.tmp
gnunet_signatures.h.tmp: registry.rec h.template
	../format.sh h.template < registry.rec > $@

gnunet_signatures.h: h.header gnunet_signatures.h.tmp h.footer
	cat h.header gnunet_signatures.h.tmp h.footer > $@

.PHONY: check clean distclean