remove legacy core api code (now dead)
[oweals/gnunet.git] / src / multicast / Makefile.am
index 442dbd75e2ecbbb443372ed1a88f83f893d6db41..b1f422765322eb8684c07cd664a5b4e28d887d3f 100644 (file)
@@ -1,3 +1,4 @@
+# This Makefile.am is in the public domain
 AM_CPPFLAGS = -I$(top_srcdir)/src/include
 
 pkgcfgdir= $(pkgdatadir)/config.d/
@@ -8,7 +9,7 @@ pkgcfg_DATA = \
   multicast.conf
 
 if MINGW
- WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols 
+ WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
 endif
 
 if USE_COVERAGE
@@ -18,8 +19,8 @@ endif
 lib_LTLIBRARIES = libgnunetmulticast.la
 
 libgnunetmulticast_la_SOURCES = \
-  multicast_api.c 
-# multicast.h
+  multicast_api.c \
+  multicast.h
 libgnunetmulticast_la_LIBADD = \
   $(top_builddir)/src/util/libgnunetutil.la \
   $(GN_LIBINTL) $(XLIB)
@@ -29,33 +30,45 @@ libgnunetmulticast_la_LDFLAGS = \
 
 
 bin_PROGRAMS = \
- gnunet-multicast 
+ gnunet-multicast
 
 libexec_PROGRAMS = \
  gnunet-service-multicast
 
 gnunet_multicast_SOURCES = \
- gnunet-multicast.c         
+ gnunet-multicast.c
 gnunet_multicast_LDADD = \
   $(top_builddir)/src/util/libgnunetutil.la \
   $(GN_LIBINTL)
 
 gnunet_service_multicast_SOURCES = \
- gnunet-service-multicast.c         
+ gnunet-service-multicast.c
 gnunet_service_multicast_LDADD = \
   $(top_builddir)/src/util/libgnunetutil.la \
+  $(top_builddir)/src/cadet/libgnunetcadet.la \
+  $(top_builddir)/src/statistics/libgnunetstatistics.la \
   $(GN_LIBINTL)
 
 
 check_PROGRAMS = \
- test_multicast_api
+ test_multicast \
+ test_multicast_multipeer
 
 if ENABLE_TEST_RUN
+AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 
-test_multicast_api_SOURCES = \
- test_multicast_api.c
-test_multicast_api_LDADD = \
-  $(top_builddir)/src/util/libgnunetutil.la  
-
+test_multicast_SOURCES = \
+ test_multicast.c
+test_multicast_LDADD = \
+  libgnunetmulticast.la \
+  $(top_builddir)/src/testing/libgnunettesting.la \
+  $(top_builddir)/src/util/libgnunetutil.la
+
+test_multicast_multipeer_SOURCE = \
+ test_multicast_multipeer.c
+test_multicast_multipeer_LDADD = \
+  libgnunetmulticast.la \
+  $(top_builddir)/src/testbed/libgnunettestbed.la \
+  $(top_builddir)/src/util/libgnunetutil.la