diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-06-18 13:49:23 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-06-18 13:49:23 +0200 |
commit | d589293557115910482af2c89cd6c5df5a10cd30 (patch) | |
tree | 23646b8ec31a6a2847273e063cf45e581365af7d | |
parent | 8cd29d1670d5c9cb8d96bc4d68effa155fd65f46 (diff) |
need to link benchmark against libjansson
-rw-r--r-- | src/mintdb/Makefile.am | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mintdb/Makefile.am b/src/mintdb/Makefile.am index 90378268f..863be8862 100644 --- a/src/mintdb/Makefile.am +++ b/src/mintdb/Makefile.am @@ -47,7 +47,7 @@ check_PROGRAMS = \ test-mintdb-deposits \ test-mintdb-keyio \ test-mintdb-postgres \ - perf-mintdb + perf-mintdb TESTS = \ test-mintdb-postgres @@ -79,15 +79,16 @@ test_mintdb_postgres_LDADD = \ -lgnunetutil -ljansson perf_mintdb_SOURCES = \ - perf_taler_mintdb.c \ - perf_taler_mintdb_init.c \ - perf_taler_mintdb_interpreter.c + perf_taler_mintdb.c \ + perf_taler_mintdb_init.c \ + perf_taler_mintdb_interpreter.c perf_mintdb_LDADD = \ - libtalermintdb.la \ + libtalermintdb.la \ $(top_srcdir)/src/util/libtalerutil.la \ $(top_srcdir)/src/pq/libtalerpq.la \ - -lgnunetutil + -ljansson \ + -lgnunetutil EXTRA_test_mintdb_postgres_DEPENDENCIES = \ |