diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-05-07 14:36:49 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-05-07 14:36:49 +0200 |
commit | f7780b52f11c953966fab654bb5aa72634a2ff3b (patch) | |
tree | fd02855c07cd2f0cbe12f7a75aef12405d2e241d /src/pq/Makefile.am | |
parent | 292b6cf265ab2699c53796de1a2b89348202e184 (diff) |
pq test skeleton, not finished
Diffstat (limited to 'src/pq/Makefile.am')
-rw-r--r-- | src/pq/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/pq/Makefile.am b/src/pq/Makefile.am index 341baa53c..8a5399fb1 100644 --- a/src/pq/Makefile.am +++ b/src/pq/Makefile.am @@ -15,6 +15,7 @@ libtalerpq_la_SOURCES = \ db_pq.c libtalerpq_la_LIBADD = \ + $(top_builddir)/src/util/libtalerutil.la \ -lgnunetutil \ -lpq $(XLIB) @@ -22,3 +23,17 @@ libtalerpq_la_LDFLAGS = \ $(POSTGRESQL_LDFLAGS) \ -version-info 0:0:0 \ -export-dynamic -no-undefined + +TESTS = \ + test_pq + +check_PROGRAMS= \ + test_pq + +test_pq_SOURCES = \ + test_pq.c +test_pq_LDADD = \ + libtalerpq.la \ + $(top_builddir)/src/util/libtalerutil.la \ + -lgnunetutil \ + -lpq $(XLIB) |