diff options
author | ngie <ngie@FreeBSD.org> | 2015-02-13 21:32:05 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-02-13 21:32:05 +0000 |
commit | 63d67d50be540d0855891771d662f55c0b27821a (patch) | |
tree | f2181ab1649ca3c068fe02ef9e6397e89685aae7 /sbin/Makefile | |
parent | 4f93783a26fe1f05723201268b28fc82b2696370 (diff) | |
download | FreeBSD-src-63d67d50be540d0855891771d662f55c0b27821a.zip FreeBSD-src-63d67d50be540d0855891771d662f55c0b27821a.tar.gz |
MFC r277678:
r277678:
Add MK_CCD knob for building and installing ccd(4), ccdconfig, etc
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'sbin/Makefile')
-rw-r--r-- | sbin/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index 74659cc..3c24934 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -8,7 +8,6 @@ SUBDIR=adjkerntz \ badsect \ camcontrol \ - ccdconfig \ clri \ comcontrol \ conscontrol \ @@ -75,6 +74,10 @@ SUBDIR=adjkerntz \ SUBDIR+= atm .endif +.if ${MK_CCD} != "no" +SUBDIR+= ccdconfig +.endif + .if ${MK_CXX} != "no" SUBDIR+= devd .endif |