12017ca883
This import includes The basic blacklist library and utility programs, to add a system-wide packet filtering notification mechanism to FreeBSD. The rational behind the daemon was given by Christos Zoulas in a presentation at vBSDcon 2015: https://youtu.be/fuuf8G28mjs Reviewed by: rpaulo Approved by: rpaulo Obtained from: NetBSD Relnotes: YES Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D5912
26 lines
723 B
Makefile
26 lines
723 B
Makefile
#
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
lib_LTLIBRARIES = libblacklist.la
|
|
include_HEADERS = blacklist.h
|
|
|
|
bin_PROGRAMS = blacklistd blacklistctl srvtest cltest
|
|
|
|
VPATH = ../bin:../lib:../test
|
|
|
|
AM_CPPFLAGS = -I../include -DDOT="."
|
|
AM_CFLAGS = @WARNINGS@
|
|
|
|
libblacklist_la_SOURCES = bl.c blacklist.c
|
|
libblacklist_la_LDFLAGS = -no-undefined -version-info 0:0:0
|
|
libblacklist_la_LIBADD = $(LTLIBOBJS)
|
|
|
|
SRCS = internal.c support.c run.c conf.c state.c
|
|
blacklistd_SOURCES = blacklistd.c ${SRCS}
|
|
blacklistd_LDADD = libblacklist.la
|
|
blacklistctl_SOURCES = blacklistctl.c ${SRCS}
|
|
blacklistctl_LDADD = libblacklist.la
|
|
srvtest_SOURCES = srvtest.c ${SRCS}
|
|
srvtest_LDADD = libblacklist.la
|
|
cltest_SOURCES = cltest.c ${SRCS}
|
|
cltest_LDADD = libblacklist.la
|