blob: e278fad2f92cc9fa7418d57f0edfca2eababf597 (
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
|
# This file is in the public domain.
SUBDIRS = .
tmplpkgdatadir = $(datadir)/taler/exchange/templates/
dist_tmplpkgdata_DATA = \
kycaid-invalid-request.en.must \
kyc-proof-already-done.en.must \
kyc-proof-bad-request.en.must \
kyc-proof-endpoint-unknown.en.must \
kyc-proof-internal-error.en.must \
kyc-proof-target-unknown.en.must \
oauth2-authentication-failure.en.must \
oauth2-authorization-failure.en.must \
oauth2-authorization-failure-malformed.en.must \
oauth2-bad-request.en.must \
oauth2-conversion-failure.en.must \
oauth2-provider-failure.en.must \
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
EXTRA_DIST = \
locale/de/LC_MESSAGES/exchange-tos-v0.po \
$(bin_SCRIPTS) \
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 = \
|