aboutsummaryrefslogtreecommitdiff
path: root/gnu-name-system-default-tlds/Makefile
blob: 157a80ee4b8aaacd5ed3e8d728765cb3f48d529e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FILES=tlds.conf tlds.rst
all: check $(FILES)

check:
	recfix --check registry.rec

distclean:

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

tlds.conf.tmp: registry.rec tlds.template
	../format.sh tlds.template < registry.rec > $@

tlds.conf: tlds.header tlds.conf.tmp
	cat tlds.header tlds.conf.tmp > $@

tlds.rst.tmp: registry.rec rst.template
	../format.sh rst.template < registry.rec > $@

tlds.rst: rst.header tlds.rst.tmp
	cat rst.header tlds.rst.tmp > $@


.PHONY: check clean distclean