add test case for 'GNUNET_SET_copy_lazy', fix bugs
[oweals/gnunet.git] / src / set / 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   set.conf
10
11 if MINGW
12  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
13 endif
14
15 if USE_COVERAGE
16   AM_CFLAGS = -fprofile-arcs -ftest-coverage
17 endif
18
19 noinst_PROGRAMS = \
20  gnunet-set-profiler gnunet-set-ibf-profiler
21
22 libexec_PROGRAMS = \
23  gnunet-service-set
24
25 lib_LTLIBRARIES = \
26   libgnunetset.la
27
28 gnunet_set_profiler_SOURCES = \
29  gnunet-set-profiler.c
30 gnunet_set_profiler_LDADD = \
31   $(top_builddir)/src/util/libgnunetutil.la \
32   libgnunetset.la \
33   $(top_builddir)/src/testing/libgnunettesting.la \
34   $(GN_LIBINTL)
35
36
37 gnunet_set_ibf_profiler_SOURCES = \
38  gnunet-set-ibf-profiler.c \
39  ibf.c
40 gnunet_set_ibf_profiler_LDADD = \
41   $(top_builddir)/src/util/libgnunetutil.la \
42   $(GN_LIBINTL)
43
44 gnunet_service_set_SOURCES = \
45  gnunet-service-set.c gnunet-service-set.h \
46  gnunet-service-set_union.c \
47  gnunet-service-set_intersection.c \
48  ibf.c ibf.h \
49  gnunet-service-set_union_strata_estimator.c gnunet-service-set_union_strata_estimator.h \
50  gnunet-service-set_protocol.h
51 gnunet_service_set_LDADD = \
52   $(top_builddir)/src/util/libgnunetutil.la \
53   $(top_builddir)/src/core/libgnunetcore.la \
54   $(top_builddir)/src/cadet/libgnunetcadet.la \
55   $(top_builddir)/src/block/libgnunetblock.la \
56   $(GN_LIBINTL)
57
58 libgnunetset_la_SOURCES = \
59   set_api.c set.h
60 libgnunetset_la_LIBADD = \
61   $(top_builddir)/src/util/libgnunetutil.la \
62   $(LTLIBINTL)
63 libgnunetset_la_LDFLAGS = \
64   $(GN_LIB_LDFLAGS)
65
66 if HAVE_TESTING
67 check_PROGRAMS = \
68  test_set_api \
69  test_set_union_result_full \
70  test_set_intersection_result_full \
71  test_set_union_copy
72 endif
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_set_api_SOURCES = \
80  test_set_api.c
81 test_set_api_LDADD = \
82   $(top_builddir)/src/util/libgnunetutil.la \
83   $(top_builddir)/src/testing/libgnunettesting.la \
84   libgnunetset.la
85
86 test_set_union_result_full_SOURCES = \
87  test_set_union_result_full.c
88 test_set_union_result_full_LDADD = \
89   $(top_builddir)/src/util/libgnunetutil.la \
90   $(top_builddir)/src/testing/libgnunettesting.la \
91   libgnunetset.la
92
93 test_set_intersection_result_full_SOURCES = \
94  test_set_intersection_result_full.c
95 test_set_intersection_result_full_LDADD = \
96   $(top_builddir)/src/util/libgnunetutil.la \
97   $(top_builddir)/src/testing/libgnunettesting.la \
98   libgnunetset.la
99
100 test_set_union_copy_SOURCES = \
101  test_set_union_copy.c
102 test_set_union_copy_LDADD = \
103   $(top_builddir)/src/util/libgnunetutil.la \
104   $(top_builddir)/src/testing/libgnunettesting.la \
105   libgnunetset.la
106
107 EXTRA_DIST = \
108   test_set.conf