diff options
| author | Enji Cooper <ngie@FreeBSD.org> | 2015-02-04 10:19:32 +0000 |
|---|---|---|
| committer | Enji Cooper <ngie@FreeBSD.org> | 2015-02-04 10:19:32 +0000 |
| commit | 11981695fc234f86e6befc35f68303d49b032d97 (patch) | |
| tree | fc108276275cac6fae4a218361a5cb55fb1ead87 /usr.bin/Makefile | |
| parent | 4025433eb2753baa255b63957b8f47d58eba9bc3 (diff) | |
Notes
Diffstat (limited to 'usr.bin/Makefile')
| -rw-r--r-- | usr.bin/Makefile | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index fbe87bd296d8d..70e131685aec0 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -50,12 +50,10 @@ SUBDIR= ${_addr2line} \ fetch \ file \ find \ - finger \ fmt \ fold \ fstat \ fsync \ - ftp \ gcore \ gencat \ getconf \ @@ -166,7 +164,6 @@ SUBDIR= ${_addr2line} \ tcopy \ tee \ ${_tests} \ - tftp \ time \ timeout \ tip \ @@ -249,10 +246,18 @@ _size= size _strings= strings .endif +.if ${MK_FINGER} != "no" +SUBDIR+= finger +.endif + .if ${MK_FMAKE} != "no" SUBDIR+= make .endif +.if ${MK_FTP} != "no" +SUBDIR+= ftp +.endif + .if ${MK_GPL_DTC} != "yes" SUBDIR+= dtc .endif @@ -365,6 +370,10 @@ SUBDIR+= colcrt SUBDIR+= ul .endif +.if ${MK_TFTP} != "no" +SUBDIR+= tftp +.endif + .if ${MK_TOOLCHAIN} != "no" SUBDIR+= ar SUBDIR+= c89 |
