exchange/contrib/Makefile.am

63 lines
1.2 KiB
Makefile
Raw Normal View History

2020-02-07 00:54:01 +01:00
SUBDIRS = .
2020-02-07 00:44:35 +01:00
# English (en)
tosendir=$(pkgdatadir)/tos/en
# English (en)
ppendir=$(pkgdatadir)/pp/en
tosen_DATA = \
tos/en/0.txt \
tos/en/0.pdf \
tos/en/0.epub \
tos/en/0.xml \
tos/en/0.html
2019-12-04 00:22:23 +01:00
2020-02-07 00:54:01 +01:00
ppen_DATA = \
pp/en/0.txt \
pp/en/0.pdf \
pp/en/0.epub \
pp/en/0.xml \
pp/en/0.html
bin_SCRIPTS = \
2020-02-04 22:37:49 +01:00
taler-bank-manage-testing \
taler-exchange-revoke
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) \
update-tos.sh \
2020-02-07 00:54:01 +01:00
update-pp.sh \
2020-02-07 00:44:35 +01:00
tos/Makefile \
tos/README \
tos/tos.rst \
tos/conf.py \
tos/locale/de/LC_MESSAGES/tos.po \
2020-02-07 00:54:01 +01:00
pp/Makefile \
pp/README \
pp/tos.rst \
pp/conf.py \
pp/locale/pp/LC_MESSAGES/pp.po \
auditor-report.tex.j2 \
2019-12-04 00:22:23 +01:00
coverage.sh \
gnunet.tag \
microhttpd.tag \
render.py
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!
# This value should be incremented whenever there is a substantive
# change in the original text (but not for the translations).
TOS_VERSION=0
2020-02-07 00:54:01 +01:00
PP_VERSION=0
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)