fixing unchecked return values
[oweals/gnunet.git] / src / multicast / Makefile.am
index e5bc04dface2a49e2f682a75fc4efbc88fa08f58..f8d49034e0b8613e3d4722b4d199296a96165263 100644 (file)
@@ -1,4 +1,4 @@
-INCLUDES = -I$(top_srcdir)/src/include
+AM_CPPFLAGS = -I$(top_srcdir)/src/include
 
 pkgcfgdir= $(pkgdatadir)/config.d/
 
@@ -8,7 +8,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 +18,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,19 +29,19 @@ 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 \
   $(GN_LIBINTL)
@@ -51,11 +51,12 @@ check_PROGRAMS = \
  test_multicast_api
 
 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  
+  $(top_builddir)/src/util/libgnunetutil.la