aboutsummaryrefslogtreecommitdiff
path: root/src/nse/Makefile.am
blob: 728f23935d82fae3de6866e2aa851bf3b8dbb3b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
INCLUDES = -I$(top_srcdir)/src/include

if MINGW
 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols 
endif

if USE_COVERAGE
  AM_CFLAGS = --coverage -O0
  XLIB = -lgcov
endif

pkgcfgdir= $(pkgdatadir)/config.d/

libexecdir= $(pkglibdir)/libexec/

pkgcfg_DATA = \
  nse.conf


lib_LTLIBRARIES = libgnunetnse.la

libgnunetnse_la_SOURCES = \
  nse_api.c nse.h
libgnunetnse_la_LIBADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(GN_LIBINTL) $(XLIB)
libgnunetnse_la_LDFLAGS = \
  $(GN_LIB_LDFLAGS)  $(WINFLAGS) \
  -version-info 0:0:0


libexec_PROGRAMS = \
 gnunet-service-nse 

if HAVE_TESTING
noinst_PROGRAMS = \
 gnunet-nse-profiler
endif

gnunet_nse_profiler_SOURCES = \
 gnunet-nse-profiler.c
gnunet_nse_profiler_LDADD = -lm \
  $(top_builddir)/src/nse/libgnunetnse.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/testbed/libgnunettestbed.la \
  $(GN_LIBINTL)
gnunet_nse_profiler_DEPENDENCIES = \
  libgnunetnse.la				 

gnunet_service_nse_SOURCES = \
 gnunet-service-nse.c         
gnunet_service_nse_LDADD = \
  $(top_builddir)/src/nse/libgnunetnse.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/core/libgnunetcore.la \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  -lm -lgcrypt \
  $(GN_LIBINTL)
gnunet_service_nse_DEPENDENCIES = \
  libgnunetnse.la				 
if ENABLE_NSE_HISTOGRAM
  gnunet_service_nse_LDADD += \
    $(top_builddir)/src/testbed/libgnunettestbedlogger.la
  gnunet_service_nse_DEPENDENCIES += \
    $(top_builddir)/src/testbed/libgnunettestbedlogger.la
endif


if HAVE_BENCHMARKS
  MULTIPEER_TEST = test_nse_multipeer
endif

if HAVE_TESTING
check_PROGRAMS = \
 test_nse_api \
 perf_kdf \
 $(MULTIPEER_TEST)
endif

if ENABLE_TEST_RUN
TESTS = $(check_PROGRAMS) 
endif

test_nse_api_SOURCES = \
 test_nse_api.c
test_nse_api_LDADD = \
  $(top_builddir)/src/nse/libgnunetnse.la \
  $(top_builddir)/src/testing/libgnunettesting.la \
  $(top_builddir)/src/util/libgnunetutil.la 

test_nse_multipeer_SOURCES = \
 test_nse_multipeer.c
test_nse_multipeer_LDADD = \
  $(top_builddir)/src/nse/libgnunetnse.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/testbed/libgnunettestbed.la \
  -lm

perf_kdf_SOURCES = \
 perf_kdf.c
perf_kdf_LDADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  -lgcrypt 

EXTRA_DIST = \
  test_nse.conf \
  nse_profiler_test.conf