aboutsummaryrefslogtreecommitdiff
path: root/gnu-name-system-default-tlds/Makefile
blob: d2b66a6b65980181550b043ccc8cc3a2f6eefc1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FILES=tlds.conf
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 $^ > $@

.PHONY: check clean distclean