-renaming new testing code to testbed
[oweals/gnunet.git] / src / testbed / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 if MINGW
4   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
5 endif
6
7 if USE_COVERAGE
8   AM_CFLAGS = --coverage -O0
9   XLIB = -lgcov
10 endif
11
12 pkgcfgdir= $(pkgdatadir)/config.d/
13
14 dist_pkgcfg_DATA = \
15   testbed.conf
16
17 lib_LTLIBRARIES = \
18   libgnunettestbed.la
19
20 libgnunettestbed_la_SOURCES = \
21   testbed_api.c testbed.h \
22   testbed_api_hosts.c testbed_api_hosts.h \
23   testbed_api_operations.c testbed_api_operations.h \
24   testbed_api_peers.c testbed_api_peers.h \
25   testbed_api_services.c \
26   testbed_api_testbed.c \
27   testbed_api_test.c \
28   testbed_api_topology.c
29 libgnunettestbed_la_LIBADD = $(XLIB) \
30  $(top_builddir)/src/core/libgnunetcore.la \
31  $(top_builddir)/src/statistics/libgnunetstatistics.la \
32  $(top_builddir)/src/transport/libgnunettransport.la \
33  $(top_builddir)/src/hello/libgnunethello.la \
34  -lm \
35  $(top_builddir)/src/util/libgnunetutil.la 
36 libgnunettestbed_la_LDFLAGS = \
37  $(GN_LIB_LDFLAGS) \
38  -version-info 0:0:0
39