.\" $NetBSD: mk.conf.5,v 1.9 2001/11/19 16:15:00 kleink Exp $ .\" .\" Copyright (c) 1999 The NetBSD Foundation, Inc. .\" All rights reserved. .\" .\" This code is derived from software contributed to The NetBSD Foundation .\" by Luke Mewburn. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions .\" are met: .\" 1. Redistributions of source code must retain the above copyright .\" notice, this list of conditions and the following disclaimer. .\" 2. Redistributions in binary form must reproduce the above copyright .\" notice, this list of conditions and the following disclaimer in the .\" documentation and/or other materials provided with the distribution. .\" 3. All advertising materials mentioning features or use of this software .\" must display the following acknowledgement: .\" This product includes software developed by Luke Mewburn. .\" 4. The name of the author may not be used to endorse or promote products .\" derived from this software without specific prior written permission. .\" .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS .\" OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND .\" ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR .\" TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE .\" USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" .Dd February 17, 1999 .Dt MK.CONF 5 .Os .\" turn off hyphenation .hym 999 .Sh NAME .Nm mk.conf .Nd make configuration file .Sh DESCRIPTION The .Nm file overrides various parameters used during the build of the system. .Pp Listed below are the .Nm variables that may be set, the values to which each may be set, a brief description of what each variable does, and a reference to relevant manual pages. .Ss NetBSD System variables .Bl -tag -width OBJMACHINE .It Sy BSDOBJDIR The real path to the system .Sq obj tree, so that .Sq "make obj" will work correctly. Default: .Pa /usr/obj . .It Sy BSDSRCDIR The real path to the system sources, so that .Sq "make obj" will work correctly. Default: .Pa /usr/src . .It Sy BUILD If defined, .Sq "make install" checks that the targets in the source directories are up-to-date and remakes them if they are out of date, instead of blindly trying to install out of date or non-existent targets. .It Sy COPTS Extra options for the C compiler. Should be appended to (e.g., .Sy COPTS+=-g ) , rather than explicitly set. .It Sy MANZ Install manual pages compressed with .Xr gzip 1 . .It Sy MKCATPAGES If .Sq no , don't build or install the formatted manual pages. .It Sy MKDOC If .Sq no , don't build or install the miscellaneous documentation. .It Sy MKINFO If .Sq no , don't build or install the TeXinfo Info documentation. .It Sy MKLINT If .Sq no , don't build or install the lint libraries. .It Sy MKMAN If .Sq no , don't build or install the manual pages. Sets .Sy MKCATPAGES=no . .It Sy MKNLS If .Sq no , don't build or install the NLS (Native Language Support) files. .It Sy MKOBJ If .Sq no , don't create objdirs. .It Sy MKPIC If .Sq no , don't build or install shared libraries. .It Sy MKPICINSTALL If .Sq no , don't install the .Sq *_pic.a libraries. .It Sy MKPROFILE If .Sq no , don't build or install the .Sq *_p.a profiling libraries. .It Sy MKSHARE If .Sq no , set .Sy MKCATPAGES=no , .Sy MKDOC=no , .Sy MKINFO=no , .Sy MKMAN=no , .Sy MKNLS=no . .It Sy OBJMACHINE If defined, creates objdirs of the form .Pa obj. , where .Sq is the current architecture (as per .Sq "uname -m" ) . .It Sy UPDATE If defined, .Sq "make install" only installs targets that are more recently modified in the source directories that their installed counterparts. .El .Ss Pkgsrc system variables Please see .Xr packages 7 for more variables used internally by the package system and .Pa /usr/pkgsrc/mk/mk.conf.example for package-specific examples. .Sh FILES .Bl -tag -width /etc/mk.conf .It Pa /etc/mk.conf This file. .It Pa /usr/pkgsrc/mk/mk.conf.example Examples for settings regarding the pkgsrc collection. .El .Sh SEE ALSO .Xr make 1 , .Xr packages 7 .Sh HISTORY The .Nm file appeared in .Nx 1.2 .