You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
481 B
25 lines
481 B
# -*- Makefile -*- |
|
|
|
AM_CFLAGS = ${regular_CFLAGS} |
|
AM_CPPFLAGS = ${regular_CPPFLAGS} -I${top_builddir}/include \ |
|
-I${top_srcdir}/include ${libnfnetlink_CFLAGS} |
|
|
|
sbin_PROGRAMS = |
|
pkgdata_DATA = |
|
|
|
if HAVE_LIBNFNETLINK |
|
sbin_PROGRAMS += nfnl_osf |
|
pkgdata_DATA += pf.os |
|
|
|
nfnl_osf_LDADD = ${libnfnetlink_LIBS} |
|
endif |
|
|
|
if ENABLE_BPFC |
|
sbin_PROGRAMS += nfbpf_compile |
|
nfbpf_compile_LDADD = -lpcap |
|
endif |
|
|
|
if ENABLE_SYNCONF |
|
sbin_PROGRAMS += nfsynproxy |
|
nfsynproxy_LDADD = -lpcap |
|
endif
|
|
|