aboutsummaryrefslogtreecommitdiff
path: root/src/multicast
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-12-23 19:31:55 +0000
committerChristian Grothoff <christian@grothoff.org>2013-12-23 19:31:55 +0000
commit5d363f7f824eb038571681017a35794e4e07e378 (patch)
treecd91c570d01dcdd7d67696065b817e27ff58925e /src/multicast
parentcbe126c37f2e6fdccdbe20e723c06b8b0b12d1c6 (diff)
downloadgnunet-5d363f7f824eb038571681017a35794e4e07e378.tar.gz
gnunet-5d363f7f824eb038571681017a35794e4e07e378.zip
-fix build system issues
Diffstat (limited to 'src/multicast')
-rw-r--r--src/multicast/Makefile.am14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/multicast/Makefile.am b/src/multicast/Makefile.am
index 442dbd75e..5035c3f79 100644
--- a/src/multicast/Makefile.am
+++ b/src/multicast/Makefile.am
@@ -8,7 +8,7 @@ pkgcfg_DATA = \
8 multicast.conf 8 multicast.conf
9 9
10if MINGW 10if MINGW
11 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols 11 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
12endif 12endif
13 13
14if USE_COVERAGE 14if USE_COVERAGE
@@ -18,8 +18,8 @@ endif
18lib_LTLIBRARIES = libgnunetmulticast.la 18lib_LTLIBRARIES = libgnunetmulticast.la
19 19
20libgnunetmulticast_la_SOURCES = \ 20libgnunetmulticast_la_SOURCES = \
21 multicast_api.c 21 multicast_api.c \
22# multicast.h 22 multicast.h
23libgnunetmulticast_la_LIBADD = \ 23libgnunetmulticast_la_LIBADD = \
24 $(top_builddir)/src/util/libgnunetutil.la \ 24 $(top_builddir)/src/util/libgnunetutil.la \
25 $(GN_LIBINTL) $(XLIB) 25 $(GN_LIBINTL) $(XLIB)
@@ -29,19 +29,19 @@ libgnunetmulticast_la_LDFLAGS = \
29 29
30 30
31bin_PROGRAMS = \ 31bin_PROGRAMS = \
32 gnunet-multicast 32 gnunet-multicast
33 33
34libexec_PROGRAMS = \ 34libexec_PROGRAMS = \
35 gnunet-service-multicast 35 gnunet-service-multicast
36 36
37gnunet_multicast_SOURCES = \ 37gnunet_multicast_SOURCES = \
38 gnunet-multicast.c 38 gnunet-multicast.c
39gnunet_multicast_LDADD = \ 39gnunet_multicast_LDADD = \
40 $(top_builddir)/src/util/libgnunetutil.la \ 40 $(top_builddir)/src/util/libgnunetutil.la \
41 $(GN_LIBINTL) 41 $(GN_LIBINTL)
42 42
43gnunet_service_multicast_SOURCES = \ 43gnunet_service_multicast_SOURCES = \
44 gnunet-service-multicast.c 44 gnunet-service-multicast.c
45gnunet_service_multicast_LDADD = \ 45gnunet_service_multicast_LDADD = \
46 $(top_builddir)/src/util/libgnunetutil.la \ 46 $(top_builddir)/src/util/libgnunetutil.la \
47 $(GN_LIBINTL) 47 $(GN_LIBINTL)
@@ -57,5 +57,5 @@ endif
57test_multicast_api_SOURCES = \ 57test_multicast_api_SOURCES = \
58 test_multicast_api.c 58 test_multicast_api.c
59test_multicast_api_LDADD = \ 59test_multicast_api_LDADD = \
60 $(top_builddir)/src/util/libgnunetutil.la 60 $(top_builddir)/src/util/libgnunetutil.la
61 61