diff options
Diffstat (limited to 'sbin/Makefile')
-rw-r--r-- | sbin/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index bf43850..a2daff4 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -1,6 +1,8 @@ # @(#)Makefile 8.5 (Berkeley) 3/31/94 # $FreeBSD$ +.include <bsd.own.mk> + # XXX MISSING: icheck ncheck SUBDIR= adjkerntz \ @@ -92,24 +94,24 @@ SUBDIR= adjkerntz \ tunefs \ umount \ -.if !defined(NO_ATM) +.if ${MK_ATM} != "no" _atm= atm .endif -.if !defined(NO_CXX) +.if ${MK_CXX} != "no" _devd= devd .endif -.if !defined(NO_IPFILTER) +.if ${MK_IPFILTER} != "no" _ipf= ipf .endif -.if !defined(NO_PF) +.if ${MK_PF} != "no" _pfctl= pfctl _pflogd= pflogd .endif -.if !defined(NO_INET6) +.if ${MK_INET6} != "no" _ip6fw= ip6fw _ping6= ping6 .endif |