diff options
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/Makefile | 5 | ||||
-rw-r--r-- | libexec/blacklistd-helper/Makefile | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/libexec/Makefile b/libexec/Makefile index b60cc34ec70d..fdcc49a3eef8 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -5,6 +5,7 @@ SUBDIR= ${_atf} \ ${_atrun} \ + ${_blacklistd-helper} \ ${_comsat} \ ${_dma} \ getty \ @@ -33,6 +34,10 @@ SUBDIR= ${_atf} \ _atrun= atrun .endif +.if ${MK_BLACKLIST_SUPPORT} != "no" +_blacklistd-helper+= blacklistd-helper +.endif + .if ${MK_BOOTPD} != "no" SUBDIR+= bootpd .endif diff --git a/libexec/blacklistd-helper/Makefile b/libexec/blacklistd-helper/Makefile new file mode 100644 index 000000000000..649c61975ee7 --- /dev/null +++ b/libexec/blacklistd-helper/Makefile @@ -0,0 +1,7 @@ +# $FreeBSD$ + +BLACKLIST_DIR=${SRCTOP}/contrib/blacklist + +SCRIPTS= ${BLACKLIST_DIR}/libexec/blacklistd-helper + +.include <bsd.prog.mk> |