Makefile (978B)
1 FILES=taler_account_properties.ts \ 2 taler_account_properties.rst 3 4 all: check $(FILES) 5 6 check: registry.rec 7 recfix --check registry.rec 8 9 distclean: 10 rm -f *.tmp 11 12 clean: 13 rm -f $(FILES) *.tmp 14 15 taler_account_properties.ts.tmp: registry.rec ts.template ts.form-header ts.form-footer 16 /usr/bin/truncate --size 0 $@ 17 ../format.sh ts.template < registry.rec >> $@ 18 19 20 taler_account_properties.ts: ts.header taler_account_properties.ts.tmp ts.footer 21 cat $^ > $@ 22 23 24 taler_account_properties.json.tmp: registry.rec json.template json.form-header json.form-footer 25 /usr/bin/truncate --size 0 $@ 26 ../format.sh json.template < registry.rec >> $@ 27 28 29 taler_account_properties.json: json.header taler_account_properties.json.tmp json.footer 30 cat $^ > $@ 31 32 33 taler_account_properties.rst.tmp: registry.rec rst.template 34 ../format.sh rst.template < registry.rec > $@ 35 36 taler_account_properties.rst: rst.header taler_account_properties.rst.tmp rst.footer 37 cat $^ > $@ 38 39 .PHONY: check clean distclean