make.conf revision 1684
11684Scsgr# $Id: make.conf,v 1.1 1994/06/01 00:58:06 phk Exp $
21664Sphk#
31664Sphk# This file, if present, will be read by make (see /usr/share/mk/sys.mk)
41664Sphk# It allows you to override macro definitions to make, without changing
51664Sphk# in your source tree, or anything the source tree installs.
61664Sphk#
71664Sphk# You have to find the things you can put here in the Makefiles and 
81664Sphk# documentation of the source tree.
91664Sphk#
101664Sphk# This file must have a syntax as a Makefile.
111664Sphk#
121664Sphk# One, and probably the most common, use could be:
131664Sphk#
141664Sphk#CFLAGS= -O -m486 -pipe
151664Sphk#	A lot of people report that -O2 works fine, but there are known
161664Sphk#	bugs in gcc.  -pipe will almost always speed up compilation.
171664Sphk#
181664Sphk#
191664Sphk# Another useful entry could be:
201664Sphk#
211664Sphk#NOPROFILE=	no_way
221664Sphk#	Avoid compiling profiled libraries
231664Sphk#
241684Scsgr#
251684Scsgr# To compile and install the Sun libm instead of the default use:
261684Scsgr#
271684Scsgr#WANT_MSUN=	yes
281684Scsgr#
291684Scsgr#
301684Scsgr# If you have a FPU (i387, i486DX, Pentium), you can make
311684Scsgr# the Sun libm use the FPU:
321684Scsgr#
331684Scsgr#HAVE_FPU=	yes
341684Scsgr#
351684Scsgr#
361684Scsgr# If you do not want unformatted manual pages to be compressed
371684Scsgr# when they are installed:
381684Scsgr#
391684Scsgr#NOMANCOMPRESS=	no_way
40