diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-02-05 22:24:10 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-02-05 22:24:10 +0000 |
commit | d75a2de4e9a450269291a47593f2e50c37eca733 (patch) | |
tree | 915d9cf6f76d8cfb2e7fb80f948aa362e72a944f /src/pq/Makefile.am | |
parent | 522bd40f4cee9e5546d15128f76d18799017220c (diff) |
creating libgnunetpq library
Diffstat (limited to 'src/pq/Makefile.am')
-rw-r--r-- | src/pq/Makefile.am | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/pq/Makefile.am b/src/pq/Makefile.am new file mode 100644 index 000000000..66f57838e --- /dev/null +++ b/src/pq/Makefile.am @@ -0,0 +1,39 @@ +# This Makefile.am is in the public domain +AM_CPPFLAGS = -I$(top_srcdir)/src/include $(POSTGRESQL_CPPFLAGS) + +if MINGW + WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols +endif + +if USE_COVERAGE + AM_CFLAGS = --coverage +endif + +if HAVE_POSTGRESQL +lib_LTLIBRARIES = libgnunetpq.la +endif + +libgnunetpq_la_SOURCES = \ + pq.c \ + pq_query_helper.c \ + pq_result_helper.c +libgnunetpq_la_LIBADD = -lpq \ + $(top_builddir)/src/util/libgnunetutil.la +libgnunetpq_la_LDFLAGS = \ + $(POSTGRESQL_LDFLAGS) \ + $(GN_LIB_LDFLAGS) \ + -version-info 0:0:0 + + +TESTS = \ + test_pq + +check_PROGRAMS= \ + test_pq + +test_pq_SOURCES = \ + test_pq.c +test_pq_LDADD = \ + libgnunetpq.la \ + $(top_builddir)/src/util/libgnunetutil.la \ + -lpq $(XLIB) |