summaryrefslogtreecommitdiff
path: root/contrib/Makefile.am
blob: cc1cf4d7f87a90fbb0870267acc4127c6d307e57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
SUBDIRS = .

tmplpkgdatadir = $(prefix)/share/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

# %%.must: merchant-backoffice/%.html
# WTF: cp $< $@


# English (en)
tosendir=$(datadir)/taler/exchange/tos/en

# English (en)
ppendir=$(datadir)/taler/exchange/pp/en

rdatadir=$(datadir)/taler/exchange

tosen_DATA = \
  tos/en/*.txt \
  tos/en/*.pdf \
  tos/en/*.epub \
  tos/en/*.xml \
  tos/en/*.html

ppen_DATA = \
  pp/en/*.txt \
  pp/en/*.pdf \
  pp/en/*.epub \
  pp/en/*.xml \
  pp/en/*.html

rdata_DATA = \
  auditor-report.tex.j2

bin_SCRIPTS = \
  taler-bank-manage-testing \
  taler-nexus-prepare

EXTRA_DIST = \
  $(bin_SCRIPTS) \
  $(tosen_DATA) \
  $(ppen_DATA) \
  update-tos.sh \
  update-pp.sh \
  gana-update.sh \
  gana/gnu-taler-error-codes/registry.rec \
  gana/gnu-taler-error-codes/Makefile \
  tos/Makefile \
  tos/README \
  tos/bfh-v0.rst \
  tos/tos-v0.rst \
  tos/conf.py.in \
  tos/locale/de/LC_MESSAGES/tos.po \
  pp/Makefile \
  pp/README \
  pp/pp-v0.rst \
  pp/conf.py.in \
  pp/locale/de/LC_MESSAGES/pp.po \
  $(rdata_DATA) \
  coverage.sh \
  gnunet.tag \
  microhttpd.tag

# Change the set of supported languages here. You should
# also update tos'XX'data and EXTRA_DIST accordingly.
TOS_LANGUAGES="en de"
PP_LANGUAGES="en de"

# Change the terms-of-service version (Etag) to generate here!
# This value should be modified whenever there is a substantive
# change in the original text (but not for the translations).
TOS_VERSION=tos-v0
PP_VERSION=pp-v0

update-tos:
	VERSION=$(TOS_VERSION) ./update-tos.sh $(TOS_LANGUAGES)
update-pp:
	VERSION=$(PP_VERSION) ./update-pp.sh $(PP_LANGUAGES)