update velocity always at the end of iteration
[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 EXTRA_DIST = \
30  rest.conf
31
32 gnunet_rest_server_SOURCES = \
33  gnunet-rest-server.c
34
35 gnunet_rest_server_LDADD = \
36   $(top_builddir)/src/util/libgnunetutil.la \
37   $(GN_LIBINTL) -lmicrohttpd
38
39 libgnunetrest_la_SOURCES = \
40   rest.c
41 libgnunetrest_la_LIBADD = \
42   $(top_builddir)/src/util/libgnunetutil.la $(XLIB) \
43   $(GN_LIBINTL) -lmicrohttpd 
44 libgnunetrest_la_LDFLAGS = \
45   $(GN_LIB_LDFLAGS) \
46   -version-info 0:0:0
47