blob: 7a8f6e071e13d23b749e06664498613e3ebbed7c (
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
|
# This Makefile.am is in the public domain
talerincludedir = $(includedir)/taler
if WALLET_ONLY
talerinclude_HEADERS = \
platform.h \
taler_amount_lib.h \
taler_crypto_lib.h \
taler_util_wallet.h \
taler_signatures.h
else
talerinclude_HEADERS = \
platform.h \
taler_amount_lib.h \
taler_auditordb_lib.h \
taler_auditordb_plugin.h \
taler_bank_service.h \
taler_crypto_lib.h \
taler_error_codes.h \
taler_exchange_service.h \
taler_exchangedb_lib.h \
taler_exchangedb_plugin.h \
taler_fakebank_lib.h \
taler_json_lib.h \
taler_util.h \
taler_pq_lib.h \
taler_signatures.h \
taler_wire_lib.h \
taler_wire_plugin.h
endif
EXTRA_DIST = gauger.h
|