diff options
author | wosch <wosch@FreeBSD.org> | 1996-05-27 23:05:54 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-05-27 23:05:54 +0000 |
commit | 71de83ff607433b00ff4268b69f93f978ddcf247 (patch) | |
tree | 511c895f0b052be2ada38caa3495a6185c3939e6 /share | |
parent | 3f65ec9421df28b22a512db46aa4357e59763882 (diff) | |
download | FreeBSD-src-71de83ff607433b00ff4268b69f93f978ddcf247.zip FreeBSD-src-71de83ff607433b00ff4268b69f93f978ddcf247.tar.gz |
Add a note that MAKEOBJDIR is an enviroment variable
and does work proper only if set as enviroment variable,
not as global or command line variable.
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.obj.mk | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/share/mk/bsd.obj.mk b/share/mk/bsd.obj.mk index 133c194..200434c 100644 --- a/share/mk/bsd.obj.mk +++ b/share/mk/bsd.obj.mk @@ -1,4 +1,4 @@ -# $Id: bsd.obj.mk,v 1.2 1996/04/09 22:43:33 wosch Exp $ +# $Id: bsd.obj.mk,v 1.3 1996/04/22 23:31:39 wosch Exp $ # # The include file <bsd.obj.mk> handles creating 'obj' directory # and cleaning up object files, log files etc. @@ -12,8 +12,14 @@ # BSDOBJDIR The real path to the system 'obj' tree, so that 'make obj' # will work correctly. [/usr/obj] # +# CLEANFILES Additional files to remove for the clean and cleandir targets. +# # MAKEOBJDIR A file name to the directory where the targets -# are built. [obj] +# are built. Note: MAKEOBJDIR is an *enviroment* variable +# and does work proper only if set as enviroment variable, +# not as global or command line variable! [obj] +# +# E.g. use `env MAKEOBJDIR=obj-amd make' # # NOOBJ Do not create 'obj' directory if defined. [not set] # |