aboutsummaryrefslogtreecommitdiff
path: root/src/pq/Makefile.am
blob: 9270e6fe0f08a9542b65935724f916f62dc2b4e7 (plain) (blame)
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
35
36
37
38
39
40
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include $(POSTGRESQL_CPPFLAGS)

if USE_COVERAGE
  AM_CFLAGS = --coverage
endif

if HAVE_POSTGRESQL
lib_LTLIBRARIES = libgnunetpq.la
endif

libgnunetpq_la_SOURCES = \
  pq.c \
  pq_connect.c \
  pq_eval.c \
  pq_exec.c \
  pq_prepare.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

if ENABLE_TEST_RUN
TESTS = \
 test_pq
endif

check_PROGRAMS= \
 test_pq

test_pq_SOURCES = \
  test_pq.c
test_pq_LDADD = \
  libgnunetpq.la \
  $(top_builddir)/src/util/libgnunetutil.la  \
  -lpq $(XLIB)