diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2016-07-24 17:18:34 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2016-07-24 17:18:34 +0200 |
commit | f24bd4369621b594d78a45bb9ae75d3e22b52df1 (patch) | |
tree | ab2a85b43e9b3188b6559142d3a25c4c096e534e | |
parent | 7942d89835676b4eda70134b234398dfbc8c93e0 (diff) | |
download | eficast-f24bd4369621b594d78a45bb9ae75d3e22b52df1.tar.gz eficast-f24bd4369621b594d78a45bb9ae75d3e22b52df1.tar.bz2 eficast-f24bd4369621b594d78a45bb9ae75d3e22b52df1.zip |
gnulib : fix automake configuration to link against it.
-rw-r--r-- | mcastseed/src/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mcastseed/src/Makefile.am b/mcastseed/src/Makefile.am index 1e3351c..c49cf70 100644 --- a/mcastseed/src/Makefile.am +++ b/mcastseed/src/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -AM_CPPFLAGS = -I ../lib +AM_CPPFLAGS = -I $(top_srcdir)/lib AM_CFLAGS =\ -Wall \ -Wextra \ @@ -13,5 +13,6 @@ bin_PROGRAMS = mcastseed mcastleech random_speed_dd mcastseed_SOURCES = mcastseed.c sockets.c mcastleech_SOURCES = mcastleech.c sockets.c dgrambuf.c +mcastleech_LDADD = $(top_builddir)/lib/libgnu.a random_speed_dd_SOURCES = random_speed_dd.c |