diff options
Diffstat (limited to 'contrib/Makefile.am.in')
-rw-r--r-- | contrib/Makefile.am.in | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/contrib/Makefile.am.in b/contrib/Makefile.am.in new file mode 100644 index 000000000..64a5a9f54 --- /dev/null +++ b/contrib/Makefile.am.in @@ -0,0 +1,71 @@ +# This file is in the public domain. + +SUBDIRS = . + +tmplpkgdatadir = $(datadir)/taler/exchange/templates/ +dist_tmplpkgdata_DATA = \ + persona-exchange-unauthorized.en.must \ + persona-load-failure.en.must \ + persona-exchange-unpaid.en.must \ + persona-logic-failure.en.must \ + persona-invalid-response.en.must \ + persona-network-timeout.en.must \ + persona-kyc-failed.en.must \ + persona-provider-failure.en.must + +termsdir=$(datadir)/taler/terms/ +terms_DATA = \ + exchange-tos-v0.rst \ + exchange-tos-bfh-v0.rst \ + exchange-pp-v0.rst + +install-exec-local: + find locale/ -name "*.po" + mkdir -p $(DESTDIR)$(datadir) + cp --parents -r $$(find locale/ -name "*.po") $(DESTDIR)$(datadir) + +rdatadir=$(datadir)/taler/exchange +rdata_DATA = \ + auditor-report.tex.j2 + +bin_SCRIPTS = \ + taler-auditor-dbconfig \ + taler-exchange-dbconfig \ + taler-terms-generator \ + taler-bank-manage-testing \ + taler-nexus-prepare + +edit_script = $(SED) -e 's,%termsdir%,$(termsdir),'g -e 's,%localedir%,$(localedir),'g $(NULL) +taler-terms-generator: taler-terms-generator.in + rm -f $@ $@.tmp && \ + $(edit_script) $< >$@.tmp && \ + chmod a-w+x $@.tmp && \ + mv $@.tmp $@ + +CLEANFILES = \ + taler-terms-generator + +EXTRA_DIST = \ + locale/de/LC_MESSAGES/exchange-tos-v0.po \ + taler-bank-manage-testing \ + taler-nexus-prepare \ + taler-terms-generator.in \ + taler-auditor-dbconfig \ + taler-exchange-dbconfig \ + gana-generate.sh \ + gana/gnu-taler-error-codes/registry.rec \ + gana/gnu-taler-error-codes/Makefile \ + $(terms_DATA) \ + $(rdata_DATA) \ + coverage.sh \ + gnunet.tag \ + microhttpd.tag \ + packages + +spapkgdatadir = $(prefix)/share/taler/exchange/spa/ + +# This is for the single-page-app imported from the wallet-core.git +# prebuilt branch. This MUST be the last line in the +# Makefile.am.in, as it will be combined with the +# actual SPA data by 'bootstrap'! +dist_spapkgdata_DATA = \ |