-fix (C) notices
[oweals/gnunet.git] / src / rest / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
3
4 plugindir = $(libdir)/gnunet
5
6 pkgcfgdir= $(pkgdatadir)/config.d/
7
8 libexecdir= $(pkglibdir)/libexec/
9
10 pkgcfg_DATA = \
11    rest.conf
12
13
14 if MINGW
15   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
16 endif
17
18 if USE_COVERAGE
19   AM_CFLAGS = --coverage -O0
20   XLIBS = -lgcov
21 endif
22
23 lib_LTLIBRARIES = \
24         libgnunetrest.la 
25
26 libexec_PROGRAMS = \
27  gnunet-rest-server
28
29
30 gnunet_rest_server_SOURCES = \
31  gnunet-rest-server.c
32
33 gnunet_rest_server_LDADD = \
34   $(top_builddir)/src/util/libgnunetutil.la \
35   $(GN_LIBINTL) -lmicrohttpd
36
37 libgnunetrest_la_SOURCES = \
38   rest.c
39 libgnunetrest_la_LIBADD = \
40   $(top_builddir)/src/util/libgnunetutil.la $(XLIB) \
41   $(GN_LIBINTL) -lmicrohttpd -ljansson
42 libgnunetrest_la_LDFLAGS = \
43   $(GN_LIB_LDFLAGS) \
44   -version-info 0:0:0
45