diff options
author | lidl <lidl@FreeBSD.org> | 2016-06-02 19:06:04 +0000 |
---|---|---|
committer | lidl <lidl@FreeBSD.org> | 2016-06-02 19:06:04 +0000 |
commit | 6f31a383cc6d2459585d754d3d30f980487df06f (patch) | |
tree | 45c1a8bc32e7b9d60122086211c8fa6df289de16 /usr.sbin/Makefile | |
parent | 44920da28cde32f352e76a4220b068c8f623c60d (diff) | |
download | FreeBSD-src-6f31a383cc6d2459585d754d3d30f980487df06f.zip FreeBSD-src-6f31a383cc6d2459585d754d3d30f980487df06f.tar.gz |
Add basic blacklist build support
Reviewed by: rpaulo
Approved by: rpaulo
Relnotes: YES
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D5913
Diffstat (limited to 'usr.sbin/Makefile')
-rw-r--r-- | usr.sbin/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 8dfe327..8c80266 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -113,6 +113,10 @@ SUBDIR.${MK_AUDIT}+= auditreduce SUBDIR.${MK_AUDIT}+= praudit SUBDIR.${MK_AUTHPF}+= authpf SUBDIR.${MK_AUTOFS}+= autofs +.if ${MK_BLACKLIST_SUPPORT} != "no" +SUBDIR.${MK_BLACKLIST_SUPPORT}+= blacklistctl +SUBDIR.${MK_BLACKLIST_SUPPORT}+= blacklistd +.endif SUBDIR.${MK_BLUETOOTH}+= bluetooth SUBDIR.${MK_BOOTPARAMD}+= bootparamd SUBDIR.${MK_BSDINSTALL}+= bsdinstall |