aboutsummaryrefslogtreecommitdiff
path: root/gnunet-dht-block-types/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'gnunet-dht-block-types/Makefile')
-rw-r--r--gnunet-dht-block-types/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/gnunet-dht-block-types/Makefile b/gnunet-dht-block-types/Makefile
new file mode 100644
index 0000000..f402c2d
--- /dev/null
+++ b/gnunet-dht-block-types/Makefile
@@ -0,0 +1,18 @@
1FILES=gnunet_dht_block_types.h
2all: check $(FILES)
3
4check:
5 recfix --check registry.rec
6
7distclean:
8 rm -f *.tmp
9clean:
10 rm -f $(FILES) *.tmp
11
12gnunet_dht_block_types.h.tmp: registry.rec h.template
13 ../format.sh h.template < registry.rec > $@
14
15gnunet_dht_block_types.h: h.header gnunet_dht_block_types.h.tmp h.footer
16 cat h.header gnunet_dht_block_types.h.tmp h.footer > $@
17
18.PHONY: check clean distclean