aboutsummaryrefslogtreecommitdiff
path: root/dot-alt/Makefile
blob: cff05b7a752112b43af308b8de04672019c50adc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FILES=dot_alt.rst
all: check $(FILES)

check:
	recfix --check registry.rec

distclean:

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

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

rst.header.tmp:
	cat README POLICY rst.header.template > $@

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

.PHONY: check