aboutsummaryrefslogtreecommitdiff
path: root/payto-payment-target-types/Makefile
blob: 9fa175c0838707df4cd216485556c3112514d9cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FILES=payto_payment_target_types.rst
all: check $(FILES)


check:
	recfix --check registry.rec

distclean:
	rm -f *.tmp

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

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

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

.PHONY: check