make.conf revision 1733
1# $Id: make.conf,v 1.5 1994/06/14 11:46:52 ache 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#
18#
19# Another useful entry could be:
20#
21#NOPROFILE=	no_way
22#	Avoid compiling profiled libraries
23#
24#
25# To compile and install the Sun libm instead of the default use:
26#
27#WANT_MSUN=	yes
28#
29#
30# If you have a FPU (i387, i486DX, Pentium), you can make
31# the Sun libm use the FPU:
32#
33#HAVE_FPU=	yes
34#
35#
36# If you do not want unformatted manual pages to be compressed
37# when they are installed:
38#
39#NOMANCOMPRESS=	no_way
40#
41#
42# Default format for system documentation, depends on your printer.
43# Set this to "ascii" for simple printers or screen
44#
45#PRINTER=	ps
46#
47#
48# Options to pass to make for building the bootblocks
49#
50#MDEC_OPT=	BOOTWAIT=0
51#MDEC_OPT=	BOOTWAIT=640000
52#
53#
54# Allow 'cc' to generate all FPU codes. Do not use this if you intend to
55# generate code to run on machines with broken FPU emulator. Beware, this
56# is a compile-time static option to 'cc'.
57#
58#CCFPU=		yes
59