make.conf revision 1696
1# $Id: make.conf,v 1.2 1994/06/05 20:37:15 csgr Exp $
2#
3# This file, if present, will be read by make (see /usr/share/mk/sys.mk)
4# It allows you to override macro definitions to make, without changing
5# in your source tree, or anything the source tree installs.
6#
7# You have to find the things you can put here in the Makefiles and 
8# documentation of the source tree.
9#
10# This file must have a syntax as a Makefile.
11#
12# One, and probably the most common, use could be:
13#
14#CFLAGS= -O -m486 -pipe
15#	A lot of people report that -O2 works fine, but there are known
16#	bugs in gcc.  -pipe will almost always speed up compilation.
17#CXXFLAGS= -O -m486 -pipe
18#
19#
20# Another useful entry could be:
21#
22#NOPROFILE=	no_way
23#	Avoid compiling profiled libraries
24#
25#
26# To compile and install the Sun libm instead of the default use:
27#
28#WANT_MSUN=	yes
29#
30#
31# If you have a FPU (i387, i486DX, Pentium), you can make
32# the Sun libm use the FPU:
33#
34#HAVE_FPU=	yes
35#
36#
37# If you do not want unformatted manual pages to be compressed
38# when they are installed:
39#
40#NOMANCOMPRESS=	no_way
41