WIP commit of scalar product 2.0. It is unfinished and does not yet pass tests. This...
[oweals/gnunet.git] / src / peerinfo / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/src/include
2
3 pkgcfgdir= $(pkgdatadir)/config.d/
4
5 libexecdir= $(pkglibdir)/libexec/
6
7 pkgcfg_DATA = \
8   peerinfo.conf
9
10 if MINGW
11  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols -lole32 -lshell32 -liconv -lstdc++ -lcomdlg32 -lgdi32
12 endif
13
14 if USE_COVERAGE
15   AM_CFLAGS = --coverage -O0
16   XLIB = -lgcov
17 endif
18
19 lib_LTLIBRARIES = libgnunetpeerinfo.la
20
21 libgnunetpeerinfo_la_SOURCES = \
22   peerinfo_api.c peerinfo.h \
23   peerinfo_api_notify.c
24 libgnunetpeerinfo_la_LIBADD = \
25   $(top_builddir)/src/hello/libgnunethello.la \
26   $(top_builddir)/src/util/libgnunetutil.la \
27   $(XLIB) \
28   $(LTLIBINTL)
29 libgnunetpeerinfo_la_LDFLAGS = \
30   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
31   -version-info 0:0:0
32
33
34 libexec_PROGRAMS = \
35  gnunet-service-peerinfo
36
37 gnunet_service_peerinfo_SOURCES = \
38  gnunet-service-peerinfo.c
39 gnunet_service_peerinfo_LDADD = \
40   $(top_builddir)/src/hello/libgnunethello.la \
41   $(top_builddir)/src/statistics/libgnunetstatistics.la \
42   $(top_builddir)/src/util/libgnunetutil.la
43
44 if HAVE_BENCHMARKS
45  PEERINFO_BENCHMARKS = \
46  perf_peerinfo_api
47 endif
48
49 if HAVE_TESTING
50 check_PROGRAMS = \
51  test_peerinfo_shipped_hellos \
52  test_peerinfo_api \
53  test_peerinfo_api_friend_only \
54  test_peerinfo_api_notify_friend_only \
55  $(PEERINFO_BENCHMARKS)
56 endif
57
58
59 if ENABLE_TEST_RUN
60 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
61 TESTS = $(check_PROGRAMS)
62 endif
63
64 test_peerinfo_shipped_hellos_SOURCES = \
65  test_peerinfo_shipped_hellos.c
66 test_peerinfo_shipped_hellos_LDADD = \
67  $(top_builddir)/src/hello/libgnunethello.la \
68  $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
69  $(top_builddir)/src/testing/libgnunettesting.la \
70  $(top_builddir)/src/util/libgnunetutil.la
71
72 test_peerinfo_api_SOURCES = \
73  test_peerinfo_api.c
74 test_peerinfo_api_LDADD = \
75  $(top_builddir)/src/hello/libgnunethello.la \
76  $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
77  $(top_builddir)/src/testing/libgnunettesting.la \
78  $(top_builddir)/src/util/libgnunetutil.la
79
80 test_peerinfo_api_friend_only_SOURCES = \
81  test_peerinfo_api_friend_only.c
82 test_peerinfo_api_friend_only_LDADD = \
83  $(top_builddir)/src/hello/libgnunethello.la \
84  $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
85  $(top_builddir)/src/testing/libgnunettesting.la \
86  $(top_builddir)/src/util/libgnunetutil.la
87
88 test_peerinfo_api_notify_friend_only_SOURCES = \
89  test_peerinfo_api_notify_friend_only.c
90 test_peerinfo_api_notify_friend_only_LDADD = \
91  $(top_builddir)/src/hello/libgnunethello.la \
92  $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
93  $(top_builddir)/src/testing/libgnunettesting.la \
94  $(top_builddir)/src/util/libgnunetutil.la
95
96 perf_peerinfo_api_SOURCES = \
97  perf_peerinfo_api.c
98 perf_peerinfo_api_LDADD = \
99  $(top_builddir)/src/hello/libgnunethello.la \
100  $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
101  $(top_builddir)/src/testing/libgnunettesting.la \
102  $(top_builddir)/src/util/libgnunetutil.la
103
104 EXTRA_DIST = \
105   test_peerinfo_api_data.conf