diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2016-03-30 18:40:09 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2016-03-30 18:40:09 +0000 |
commit | b9e557296ba58a6763717e2e38a86110a9f48f67 (patch) | |
tree | 40e43c30a15dad6ee0e87fe4217ba950120c3546 /targets/pseudo/hosttools | |
parent | 506ef4b10b2ccc67dd2bf563a85f318bb50d2b0b (diff) | |
download | src-b9e557296ba58a6763717e2e38a86110a9f48f67.tar.gz src-b9e557296ba58a6763717e2e38a86110a9f48f67.zip |
Move hosttools to Makefile.depend.host so it shows under host targets in show-valid-targets.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=297428
Diffstat (limited to 'targets/pseudo/hosttools')
-rw-r--r-- | targets/pseudo/hosttools/Makefile.depend | 36 | ||||
-rw-r--r-- | targets/pseudo/hosttools/Makefile.depend.host | 38 |
2 files changed, 38 insertions, 36 deletions
diff --git a/targets/pseudo/hosttools/Makefile.depend b/targets/pseudo/hosttools/Makefile.depend deleted file mode 100644 index d39e91edfe20..000000000000 --- a/targets/pseudo/hosttools/Makefile.depend +++ /dev/null @@ -1,36 +0,0 @@ -# $FreeBSD$ - -# This file is not autogenerated - take care! - -.if !defined(MK_KERBEROS) -.include <src.opts.mk> -.endif - -DIRDEPS = \ - lib/clang/include.host \ - lib/libc++.host \ - lib/libcxxrt.host \ - share/doc/llvm/clang.host \ - usr.bin/clang/clang-tblgen.host \ - usr.bin/clang/clang.host \ - usr.bin/clang/llvm-tblgen.host \ - usr.bin/lex/lib.host \ - usr.bin/localedef.host \ - usr.bin/mkcsmapper_static.host \ - usr.bin/mkesdb_static.host \ - usr.bin/mkuzip.host \ - usr.bin/yacc.host \ - usr.bin/xinstall.host \ - usr.bin/xlint/xlint.host \ - usr.sbin/config.host \ - -.if ${MK_KERBEROS} != "no" -DIRDEPS+= \ - kerberos5/tools/asn1_compile.host \ - kerberos5/tools/make-roken.host \ - usr.bin/compile_et.host \ - -.endif - - -.include <dirdeps.mk> diff --git a/targets/pseudo/hosttools/Makefile.depend.host b/targets/pseudo/hosttools/Makefile.depend.host new file mode 100644 index 000000000000..bdfbab00ce70 --- /dev/null +++ b/targets/pseudo/hosttools/Makefile.depend.host @@ -0,0 +1,38 @@ +# $FreeBSD$ + +# This file is not autogenerated - take care! + +.if !defined(MK_KERBEROS) +.include <src.opts.mk> +.endif + +# These are all .host dependencies + +DIRDEPS = \ + lib/clang/include \ + lib/libc++ \ + lib/libcxxrt \ + share/doc/llvm/clang \ + usr.bin/clang/clang-tblgen \ + usr.bin/clang/clang \ + usr.bin/clang/llvm-tblgen \ + usr.bin/lex/lib \ + usr.bin/localedef \ + usr.bin/mkcsmapper_static \ + usr.bin/mkesdb_static \ + usr.bin/mkuzip \ + usr.bin/yacc \ + usr.bin/xinstall \ + usr.bin/xlint/xlint \ + usr.sbin/config \ + +.if ${MK_KERBEROS} != "no" +DIRDEPS+= \ + kerberos5/tools/asn1_compile \ + kerberos5/tools/make-roken \ + usr.bin/compile_et \ + +.endif + + +.include <dirdeps.mk> |