gana

GNUnet Assigned Numbers Authority
Log | Files | Refs | README | LICENSE

Makefile (976B)


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