exchange/contrib/Makefile.am

88 lines
1.9 KiB
Makefile
Raw Normal View History

2020-02-07 00:54:01 +01:00
SUBDIRS = .
2020-02-07 00:44:35 +01:00
tmplpkgdatadir = $(prefix)/share/taler/exchange/templates/
dist_tmplpkgdata_DATA = \
2022-08-18 14:02:54 +02:00
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
# %%.must: merchant-backoffice/%.html
# WTF: cp $< $@
2020-02-07 00:44:35 +01:00
# English (en)
2021-07-26 16:16:52 +02:00
tosendir=$(datadir)/taler/exchange/tos/en
2020-02-07 00:44:35 +01:00
# English (en)
2021-07-26 16:16:52 +02:00
ppendir=$(datadir)/taler/exchange/pp/en
2020-02-07 00:44:35 +01:00
2021-07-26 16:16:52 +02:00
rdatadir=$(datadir)/taler/exchange
2020-03-21 16:09:22 +01:00
2020-02-07 00:44:35 +01:00
tosen_DATA = \
2022-10-20 13:02:56 +02:00
tos/en/*.txt \
tos/en/*.pdf \
tos/en/*.epub \
tos/en/*.xml \
tos/en/*.html
2019-12-04 00:22:23 +01:00
2020-02-07 00:54:01 +01:00
ppen_DATA = \
2022-10-20 13:02:56 +02:00
pp/en/*.txt \
pp/en/*.pdf \
pp/en/*.epub \
pp/en/*.xml \
pp/en/*.html
2020-02-07 00:54:01 +01:00
2020-03-21 16:09:22 +01:00
rdata_DATA = \
auditor-report.tex.j2
bin_SCRIPTS = \
2020-02-04 22:37:49 +01:00
taler-bank-manage-testing \
taler-nexus-prepare
2019-12-04 00:22:23 +01:00
EXTRA_DIST = \
2019-12-24 21:22:36 +01:00
$(bin_SCRIPTS) \
2020-02-07 00:44:35 +01:00
$(tosen_DATA) \
2020-03-29 03:22:55 +02:00
$(ppen_DATA) \
2020-02-07 00:44:35 +01:00
update-tos.sh \
2020-02-07 00:54:01 +01:00
update-pp.sh \
2020-09-11 22:34:08 +02:00
gana-update.sh \
gana/gnu-taler-error-codes/registry.rec \
gana/gnu-taler-error-codes/Makefile \
2020-02-07 00:44:35 +01:00
tos/Makefile \
tos/README \
2022-11-13 11:14:06 +01:00
tos/bfh-v0.rst \
tos/tos-v0.rst \
2022-10-20 13:02:56 +02:00
tos/conf.py.in \
2020-02-07 00:44:35 +01:00
tos/locale/de/LC_MESSAGES/tos.po \
2020-02-07 00:54:01 +01:00
pp/Makefile \
pp/README \
2022-11-13 11:14:06 +01:00
pp/pp-v0.rst \
2022-11-21 21:57:36 +01:00
pp/conf.py.in \
2020-03-29 03:22:55 +02:00
pp/locale/de/LC_MESSAGES/pp.po \
$(rdata_DATA) \
2019-12-04 00:22:23 +01:00
coverage.sh \
gnunet.tag \
2020-03-21 16:09:22 +01:00
microhttpd.tag
2020-02-07 00:44:35 +01:00
# Change the set of supported languages here. You should
# also update tos'XX'data and EXTRA_DIST accordingly.
TOS_LANGUAGES="en de"
2020-02-07 00:54:01 +01:00
PP_LANGUAGES="en de"
2020-02-07 00:44:35 +01:00
# Change the terms-of-service version (Etag) to generate here!
2022-11-13 11:14:06 +01:00
# This value should be modified whenever there is a substantive
2020-02-07 00:44:35 +01:00
# change in the original text (but not for the translations).
2022-11-13 11:14:06 +01:00
TOS_VERSION=tos-v0
PP_VERSION=pp-v0
2020-02-07 00:44:35 +01:00
update-tos:
VERSION=$(TOS_VERSION) ./update-tos.sh $(TOS_LANGUAGES)
2020-02-07 00:54:01 +01:00
update-pp:
VERSION=$(PP_VERSION) ./update-pp.sh $(PP_LANGUAGES)