refactor DHT for new service API
[oweals/gnunet.git] / src / core / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
3
4 pkgcfgdir= $(pkgdatadir)/config.d/
5
6 libexecdir= $(pkglibdir)/libexec/
7
8 pkgcfg_DATA = \
9   core.conf
10
11 if MINGW
12   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
13 endif
14
15 if USE_COVERAGE
16   AM_CFLAGS = --coverage -O0
17   XLIB = -lgcov
18 endif
19
20
21 lib_LTLIBRARIES = \
22   libgnunetcore.la
23
24 libgnunetcore_la_SOURCES = \
25   core_api.c core.h \
26   core_api_2.c \
27   core_api_monitor_peers.c
28 libgnunetcore_la_LIBADD = \
29   $(top_builddir)/src/util/libgnunetutil.la \
30   $(GN_LIBINTL) $(XLIB)
31 libgnunetcore_la_LDFLAGS = \
32   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
33   -version-info 0:1:0
34
35
36 libexec_PROGRAMS = \
37  gnunet-service-core
38
39 bin_PROGRAMS = \
40  gnunet-core
41
42 gnunet_service_core_SOURCES = \
43  gnunet-service-core.c gnunet-service-core.h \
44  gnunet-service-core_kx.c gnunet-service-core_kx.h \
45  gnunet-service-core_sessions.c gnunet-service-core_sessions.h \
46  gnunet-service-core_typemap.c gnunet-service-core_typemap.h
47 gnunet_service_core_LDADD = \
48   $(top_builddir)/src/statistics/libgnunetstatistics.la \
49   $(top_builddir)/src/transport/libgnunettransport.la \
50   $(top_builddir)/src/util/libgnunetutil.la \
51   $(GN_LIBINTL) $(Z_LIBS)
52
53
54 gnunet_core_SOURCES = \
55  gnunet-core.c
56 gnunet_core_LDADD = \
57   libgnunetcore.la \
58   $(top_builddir)/src/util/libgnunetutil.la
59
60 if HAVE_TESTING
61   TESTING_TESTS = \
62     test_core_api_send_to_self 
63 endif
64
65 check_PROGRAMS = \
66  test_core_api_start_only \
67  test_core_api \
68  test_core_api_reliability \
69  test_core_quota_compliance_symmetric \
70  test_core_quota_compliance_asymmetric_send_limited \
71  test_core_quota_compliance_asymmetric_recv_limited \
72  $(TESTING_TESTS)
73
74 if ENABLE_TEST_RUN
75 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
76 TESTS = $(check_PROGRAMS)
77 endif
78
79 test_core_api_SOURCES = \
80  test_core_api.c
81 test_core_api_LDADD = \
82  libgnunetcore.la \
83  $(top_builddir)/src/transport/libgnunettransport.la \
84  $(top_builddir)/src/ats/libgnunetats.la \
85  $(top_builddir)/src/util/libgnunetutil.la
86
87 test_core_api_reliability_SOURCES = \
88  test_core_api_reliability.c
89 test_core_api_reliability_LDADD = \
90  libgnunetcore.la \
91  $(top_builddir)/src/transport/libgnunettransport.la \
92  $(top_builddir)/src/ats/libgnunetats.la \
93  $(top_builddir)/src/util/libgnunetutil.la
94
95 test_core_api_send_to_self_SOURCES = \
96  test_core_api_send_to_self.c
97 test_core_api_send_to_self_LDADD = \
98  libgnunetcore.la \
99  $(top_builddir)/src/testing/libgnunettesting.la \
100  $(top_builddir)/src/transport/libgnunettransport.la \
101  $(top_builddir)/src/util/libgnunetutil.la
102
103 test_core_api_start_only_SOURCES = \
104  test_core_api_start_only.c
105 test_core_api_start_only_LDADD = \
106  $(top_builddir)/src/testing/libgnunettesting.la \
107  libgnunetcore.la \
108  $(top_builddir)/src/util/libgnunetutil.la
109
110 test_core_quota_compliance_symmetric_SOURCES = \
111  test_core_quota_compliance.c
112 test_core_quota_compliance_symmetric_LDADD = \
113  libgnunetcore.la \
114  $(top_builddir)/src/transport/libgnunettransport.la \
115  $(top_builddir)/src/ats/libgnunetats.la \
116  $(top_builddir)/src/util/libgnunetutil.la \
117  $(top_builddir)/src/statistics/libgnunetstatistics.la
118
119 test_core_quota_compliance_asymmetric_send_limited_SOURCES = \
120  test_core_quota_compliance.c
121 test_core_quota_compliance_asymmetric_send_limited_LDADD = \
122  libgnunetcore.la \
123  $(top_builddir)/src/transport/libgnunettransport.la \
124  $(top_builddir)/src/ats/libgnunetats.la \
125  $(top_builddir)/src/util/libgnunetutil.la \
126  $(top_builddir)/src/statistics/libgnunetstatistics.la
127
128 test_core_quota_compliance_asymmetric_recv_limited_SOURCES = \
129  test_core_quota_compliance.c
130 test_core_quota_compliance_asymmetric_recv_limited_LDADD = \
131  libgnunetcore.la \
132  $(top_builddir)/src/transport/libgnunettransport.la \
133  $(top_builddir)/src/ats/libgnunetats.la \
134  $(top_builddir)/src/util/libgnunetutil.la \
135  $(top_builddir)/src/statistics/libgnunetstatistics.la
136
137 EXTRA_DIST = \
138   test_core_defaults.conf \
139   test_core_api_data.conf \
140   test_core_api_peer1.conf \
141   test_core_api_peer2.conf \
142   test_core_api_send_to_self.conf \
143   test_core_quota_asymmetric_recv_limited_peer1.conf \
144   test_core_quota_asymmetric_recv_limited_peer2.conf \
145   test_core_quota_asymmetric_send_limit_peer1.conf \
146   test_core_quota_asymmetric_send_limit_peer2.conf \
147   test_core_quota_peer1.conf \
148   test_core_quota_peer2.conf