diff options
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index b9e4d6c1153a..787cbc0cbd78 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -123,6 +123,7 @@ SUBDIR= alias \ revoke \ rpcinfo \ rs \ + runat \ rup \ ruptime \ rusers \ @@ -140,6 +141,7 @@ SUBDIR= alias \ split \ stat \ stdbuf \ + strings \ su \ systat \ tail \ @@ -153,6 +155,7 @@ SUBDIR= alias \ tr \ true \ truncate \ + ts \ tsort \ tty \ uname \ @@ -250,27 +253,20 @@ SUBDIR.${MK_TOOLCHAIN}+= nm SUBDIR.${MK_TOOLCHAIN}+= readelf SUBDIR.${MK_TOOLCHAIN}+= size .endif -# Include elftoolchain's strings in build targets even if using LLVM_BINUTILS, -# as we may later install with different options. In particular, the release -# artifact builds use default options for buildworld but install with -# MK_TOOLCHAIN=no which implies MK_LLVM_BINUTILS=no. -.if ${MK_LLVM_BINUTILS} == "no" || !make(install) -SUBDIR+= strings -.endif SUBDIR.${MK_TOOLCHAIN}+= c89 SUBDIR.${MK_TOOLCHAIN}+= c99 SUBDIR.${MK_TOOLCHAIN}+= ctags .if ${MK_LLVM_CXXFILT} == "no" SUBDIR.${MK_TOOLCHAIN}+= cxxfilt .endif +# ELF Tool Chain elfcopy required for EFI objects (PR280771) +SUBDIR.${MK_TOOLCHAIN}+= elfcopy SUBDIR.${MK_TOOLCHAIN}+= file2c SUBDIR.${MK_TOOLCHAIN}+= gprof SUBDIR.${MK_TOOLCHAIN}+= indent SUBDIR.${MK_TOOLCHAIN}+= lex SUBDIR.${MK_TOOLCHAIN}+= lorder SUBDIR.${MK_TOOLCHAIN}+= mkstr -# ELF Tool Chain elfcopy required for EFI objects (PR280771) -SUBDIR.${MK_TOOLCHAIN}+= objcopy SUBDIR.${MK_TOOLCHAIN}+= rpcgen SUBDIR.${MK_TOOLCHAIN}+= unifdef SUBDIR.${MK_TOOLCHAIN}+= xstr |