- build rest before jsonapi
[oweals/gnunet.git] / src / curl / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
3
4 if USE_COVERAGE
5   AM_CFLAGS = --coverage -O0
6   XLIB = -lgcov
7 endif
8
9 lib_LTLIBRARIES = \
10   libgnunetcurl.la
11
12 libgnunetcurl_la_LDFLAGS = \
13   -version-info 0:0:0 \
14   -no-undefined
15 libgnunetcurl_la_SOURCES = \
16   curl.c \
17   curl_reschedule.c
18 libgnunetcurl_la_LIBADD = \
19   $(top_builddir)/src/util/libgnunetutil.la \
20   -ljansson \
21   -lcurl \
22   $(XLIB)
23
24 #check_PROGRAMS = \
25 #  test_curl
26
27 #TESTS = \
28 #  $(check_PROGRAMS)
29
30 #test_curl_SOURCES = \
31 #  test_curl.c
32 #test_curl_LDADD = \
33 #  libgnunetcurl.la \
34 #  $(top_builddir)/src/util/libgnunetutil.la \
35 #  -ljansson -lcurl