diff options
author | ngie <ngie@FreeBSD.org> | 2015-01-25 00:03:44 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-01-25 00:03:44 +0000 |
commit | 20758e801e2b96a60ff0ac61ac87d47e9e935201 (patch) | |
tree | 56ec8a590d791e0fa8f8d27317e5f2c61413e294 /usr.bin/Makefile | |
parent | 58730a3555d007a8209b6467769a9bf14886e32c (diff) | |
download | FreeBSD-src-20758e801e2b96a60ff0ac61ac87d47e9e935201.zip FreeBSD-src-20758e801e2b96a60ff0ac61ac87d47e9e935201.tar.gz |
Add MK_EE knob to control installing edit, ee, etc
MFC after: 2 weeks
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 2e54cdf..7106db7 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -40,7 +40,6 @@ SUBDIR= ${_addr2line} \ dirname \ dpv \ du \ - ee \ elf2aout \ ${_elfcopy} \ elfdump \ @@ -240,6 +239,10 @@ SUBDIR+= calendar _clang= clang .endif +.if ${MK_EE} != "no" +SUBDIR+= ee +.endif + .if ${MK_ELFTOOLCHAIN_TOOLS} != "no" _addr2line= addr2line _elfcopy= elfcopy |