55ef757c258304cebb7cbeff8d46f9cebb8aae08
[oweals/gnunet.git] / src / core / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 plugindir = $(libdir)/gnunet
4
5 if MINGW
6   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
7 endif
8
9 if USE_COVERAGE
10   AM_CFLAGS = -fprofile-arcs -ftest-coverage
11 endif
12
13
14 lib_LTLIBRARIES = \
15   libgnunetcore.la
16
17 libgnunetcore_la_SOURCES = \
18   core_api.c core.h
19 libgnunetcore_la_LIBADD = \
20   $(top_builddir)/src/arm/libgnunetarm.la \
21   $(top_builddir)/src/util/libgnunetutil.la \
22   $(GN_LIBINTL) 
23 libgnunetcore_la_LDFLAGS = \
24   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
25   -version-info 0:0:0
26
27
28 bin_PROGRAMS = \
29  gnunet-service-core
30
31 gnunet_service_core_SOURCES = \
32  gnunet-service-core.c 
33 gnunet_service_core_LDADD = \
34   $(top_builddir)/src/hello/libgnunethello.la \
35   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
36   $(top_builddir)/src/transport/libgnunettransport.la \
37   $(top_builddir)/src/util/libgnunetutil.la \
38   $(GN_LIBINTL)
39
40
41 check_PROGRAMS = \
42  test_core_api_start_only \
43  test_core_api 
44
45 TESTS = $(check_PROGRAMS)
46
47 test_core_api_SOURCES = \
48  test_core_api.c
49 test_core_api_LDADD = \
50  $(top_builddir)/src/arm/libgnunetarm.la \
51  $(top_builddir)/src/core/libgnunetcore.la \
52  $(top_builddir)/src/transport/libgnunettransport.la \
53  $(top_builddir)/src/util/libgnunetutil.la  
54
55
56 test_core_api_start_only_SOURCES = \
57  test_core_api_start_only.c
58 test_core_api_start_only_LDADD = \
59  $(top_builddir)/src/arm/libgnunetarm.la \
60  $(top_builddir)/src/core/libgnunetcore.la \
61  $(top_builddir)/src/util/libgnunetutil.la  
62
63
64 EXTRA_DIST = \
65   test_core_api_data.conf \
66   test_core_api_peer1.conf \
67   test_core_api_peer2.conf 
68