diff options
author | Peter Stuge <peter@stuge.se> | 2013-03-14 17:15:17 +0100 |
---|---|---|
committer | Daniel Borkmann <dborkman@redhat.com> | 2013-03-15 11:17:02 +0100 |
commit | 41c5d99d584f8bffa77b94dcfcc0fa3c4c406e81 (patch) | |
tree | 8ca59f506d0598fecb9b365fa8fb0df91c3fbffa /trafgen | |
parent | 1a9fbac03c684f29cff9ac44875bd9504a89f54e (diff) |
netsniff-ng trafgen: Find libnl-3.0 and libnl-genl-3.0 using pkg-config
Call pkg-config --cflags and pkg-config --libs to find correct CFLAGS
and LDFLAGS respectively.
Signed-off-by: Peter Stuge <peter@stuge.se>
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'trafgen')
-rw-r--r-- | trafgen/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/trafgen/Makefile b/trafgen/Makefile index 289aa28..b34b98c 100644 --- a/trafgen/Makefile +++ b/trafgen/Makefile @@ -1,5 +1,5 @@ -trafgen-libs = -lnl-genl-3 \ - -lnl-3 \ +trafgen-libs = $(shell pkg-config --libs libnl-3.0) \ + $(shell pkg-config --libs libnl-genl-3.0) \ -lm trafgen-objs = xmalloc.o \ |