summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
author/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org>2005-09-23 18:58:55 +0000
committer/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org>2005-09-23 18:58:55 +0000
commit89b46b82c35ed60d7643f91a28974c7e1149bee5 (patch)
treeb4a3bad23aabe52f595644c07edc1f30f375fd0d /utils
parent269685fcecb0562420b99fa63329278dc49d2e8f (diff)
fix build of utils against local libtool library
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile.am10
1 files changed, 6 insertions, 4 deletions
diff --git a/utils/Makefile.am b/utils/Makefile.am
index d437579..c7ed00b 100644
--- a/utils/Makefile.am
+++ b/utils/Makefile.am
@@ -1,8 +1,10 @@
-bin_PROGRAMS = nfqnl_test
-nfqnl_test_SOURCES = nfqnl_test.c
-
INCLUDES = $(all_includes) -I$(top_srcdir)/include -I${KERNELDIR}
-nfqnl_test_LDFLAGS = $(all_libraries) -lnfnetlink_queue -lnfnetlink
+bin_PROGRAMS = nfqnl_test
+
+nfqnl_test_SOURCES = nfqnl_test.c
+nfqnl_test_LDADD = ../src/libnfnetlink_queue.la
+nfqnl_test_LDFLAGS = -dynamic
+