aboutsummaryrefslogtreecommitdiff
path: root/src/peerinfo/Makefile.am
blob: 69424ffb9ce50e77f8f1c641eb6c87e40ad1bc3e (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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include

pkgcfgdir= $(pkgdatadir)/config.d/

libexecdir= $(pkglibdir)/libexec/

plugindir = $(libdir)/gnunet

pkgcfg_DATA = \
  peerinfo.conf

if MINGW
 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols -lole32 -lshell32 -liconv -lstdc++ -lcomdlg32 -lgdi32
endif

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

if HAVE_MHD
if HAVE_JSON
REST_PLUGIN = libgnunet_plugin_rest_peerinfo.la
endif
endif

lib_LTLIBRARIES = libgnunetpeerinfo.la

plugin_LTLIBRARIES = $(REST_PLUGIN)

libgnunet_plugin_rest_peerinfo_la_SOURCES = \
  plugin_rest_peerinfo.c
libgnunet_plugin_rest_peerinfo_la_LIBADD = \
  $(top_builddir)/src/hello/libgnunethello.la \
  libgnunetpeerinfo.la \
  $(top_builddir)/src/rest/libgnunetrest.la \
  $(top_builddir)/src/json/libgnunetjson.la \
  $(top_builddir)/src/transport/libgnunettransport.la \
  $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
  $(LTLIBINTL) -ljansson -lmicrohttpd
libgnunet_plugin_rest_peerinfo_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)


libgnunetpeerinfo_la_SOURCES = \
  peerinfo_api.c peerinfo.h \
  peerinfo_api_notify.c
libgnunetpeerinfo_la_LIBADD = \
  $(top_builddir)/src/hello/libgnunethello.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(XLIB) \
  $(LTLIBINTL)
libgnunetpeerinfo_la_LDFLAGS = \
  $(GN_LIB_LDFLAGS) $(WINFLAGS) \
  -version-info 0:0:0


libexec_PROGRAMS = \
 gnunet-service-peerinfo

gnunet_service_peerinfo_SOURCES = \
  gnunet-service-peerinfo.c
gnunet_service_peerinfo_LDADD = \
  $(top_builddir)/src/hello/libgnunethello.la \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/util/libgnunetutil.la

if HAVE_BENCHMARKS
 PEERINFO_BENCHMARKS = \
 perf_peerinfo_api
endif

if HAVE_TESTING
check_PROGRAMS = \
 test_peerinfo_shipped_hellos \
 test_peerinfo_api \
 test_peerinfo_api_friend_only \
 test_peerinfo_api_notify_friend_only \
 $(PEERINFO_BENCHMARKS)
endif


if ENABLE_TEST_RUN
AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
TESTS = $(check_PROGRAMS)
endif

test_peerinfo_shipped_hellos_SOURCES = \
 test_peerinfo_shipped_hellos.c
test_peerinfo_shipped_hellos_LDADD = \
 $(top_builddir)/src/hello/libgnunethello.la \
 libgnunetpeerinfo.la \
 $(top_builddir)/src/testing/libgnunettesting.la \
 $(top_builddir)/src/util/libgnunetutil.la

test_peerinfo_api_SOURCES = \
 test_peerinfo_api.c
test_peerinfo_api_LDADD = \
 $(top_builddir)/src/hello/libgnunethello.la \
 libgnunetpeerinfo.la \
 $(top_builddir)/src/testing/libgnunettesting.la \
 $(top_builddir)/src/util/libgnunetutil.la

test_peerinfo_api_friend_only_SOURCES = \
 test_peerinfo_api_friend_only.c
test_peerinfo_api_friend_only_LDADD = \
 $(top_builddir)/src/hello/libgnunethello.la \
 libgnunetpeerinfo.la \
 $(top_builddir)/src/testing/libgnunettesting.la \
 $(top_builddir)/src/util/libgnunetutil.la

test_peerinfo_api_notify_friend_only_SOURCES = \
 test_peerinfo_api_notify_friend_only.c
test_peerinfo_api_notify_friend_only_LDADD = \
 $(top_builddir)/src/hello/libgnunethello.la \
 libgnunetpeerinfo.la \
 $(top_builddir)/src/testing/libgnunettesting.la \
 $(top_builddir)/src/util/libgnunetutil.la

perf_peerinfo_api_SOURCES = \
 perf_peerinfo_api.c
perf_peerinfo_api_LDADD = \
 $(top_builddir)/src/hello/libgnunethello.la \
 libgnunetpeerinfo.la \
 $(top_builddir)/src/testing/libgnunettesting.la \
 $(top_builddir)/src/util/libgnunetutil.la

EXTRA_DIST = \
  test_peerinfo_api_data.conf