diff options
author | imp <imp@FreeBSD.org> | 2006-06-06 16:24:54 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2006-06-06 16:24:54 +0000 |
commit | f22f333d753b7b85209e5f91eb48830725006440 (patch) | |
tree | 24c9e0ae81de9bd7a0ab15646ac6b628abecc170 /Makefile | |
parent | c4b35c221ae86b6c5fbf99b65a36bc1bf3e0fd52 (diff) | |
download | FreeBSD-src-f22f333d753b7b85209e5f91eb48830725006440.zip FreeBSD-src-f22f333d753b7b85209e5f91eb48830725006440.tar.gz |
Create a new target 'buildenvvars'. This target reports the build
environment for cross building (the same one you'd get interactively
in make buildenv). This cannot be a simple
make -f Makefile.inc1 -V WMAKEENV
because in PATH is not set correctly unless one takes a trip through
the Makefile/Makefile.inc1 indirection, the logic of which is too
large to reproduce outside of Makefiles.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -68,9 +68,9 @@ # developer convenience only. They are intentionally not documented and # completely subject to change without notice. # -TGTS= all all-man buildenv buildkernel buildworld check-old checkdpadd \ - clean cleandepend cleandir delete-old delete-old-libs depend \ - distribute distributeworld distrib-dirs distribution doxygen \ +TGTS= all all-man buildenv buildenvvars buildkernel buildworld check-old \ + checkdpadd clean cleandepend cleandir delete-old delete-old-libs \ + depend distribute distributeworld distrib-dirs distribution doxygen \ everything hierarchy install installcheck installkernel \ installkernel.debug reinstallkernel reinstallkernel.debug \ installworld kernel-toolchain libraries lint maninstall \ |