diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-12 23:01:01 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-12 23:01:01 +0100 |
commit | 9ea661ca311b0eb0f55c1e6f0a9095ebc7586c4a (patch) | |
tree | 61413b870299c06319bf06644c9f22a8d2e971fd | |
parent | 5b78b3ea86972f55d27f6b06c96f2ce89a20bb78 (diff) |
fix build issues
-rw-r--r-- | src/exchange/Makefile.am | 1 | ||||
-rw-r--r-- | src/lib/.gitignore | 6 | ||||
-rw-r--r-- | src/lib/Makefile.am | 5 |
3 files changed, 10 insertions, 2 deletions
diff --git a/src/exchange/Makefile.am b/src/exchange/Makefile.am index 92bbb90d8..9b229479c 100644 --- a/src/exchange/Makefile.am +++ b/src/exchange/Makefile.am @@ -1,7 +1,6 @@ # This Makefile.am is in the public domain AM_CPPFLAGS = \ -I$(top_srcdir)/src/include \ - -I$(top_srcdir)/src/bank-lib/ \ $(LIBGCRYPT_CFLAGS) \ $(POSTGRESQL_CPPFLAGS) diff --git a/src/lib/.gitignore b/src/lib/.gitignore index 77a0f711d..5247dfc4f 100644 --- a/src/lib/.gitignore +++ b/src/lib/.gitignore @@ -1,2 +1,8 @@ test_auditor_api_version test_exchange_api_revocation +test_bank_api_with_fakebank +test_bank_api_with_fakebank_twisted +test_bank_api_with_pybank +test_bank_api_with_pybank_twisted +test_taler_exchange_aggregator-postgres +test_taler_exchange_wirewatch-postgres diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am index 3ba56aeed..0325df009 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -1,5 +1,8 @@ # This Makefile.am is in the public domain -AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/bank-lib +AM_CPPFLAGS = \ + -I$(top_srcdir)/src/include \ + $(LIBGCRYPT_CFLAGS) \ + $(POSTGRESQL_CPPFLAGS) if USE_COVERAGE AM_CFLAGS = --coverage -O0 |