aboutsummaryrefslogtreecommitdiff
path: root/gnunet-dht-block-types/Makefile
blob: f402c2d691cde212565b3190fb6ab718e1bd4520 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FILES=gnunet_dht_block_types.h
all: check $(FILES)

check:
	recfix --check registry.rec

distclean:
	rm -f *.tmp
clean:
	rm -f $(FILES) *.tmp

gnunet_dht_block_types.h.tmp: registry.rec h.template
	../format.sh h.template < registry.rec > $@

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

.PHONY: check clean distclean