make.conf revision 3023
1# $Id: make.conf,v 1.6 1994/09/20 22:30:33 adam 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# your source tree, or anything the source tree installs.
6#
7# This file must be in valid Makefile syntax.
8#
9# You have to find the things you can put here in the Makefiles and 
10# documentation of the source tree.
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 if you
17#	have enough memory.
18#
19#
20# Another useful entry is
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#
42#
43# Default format for system documentation, depends on your printer.
44# Set this to "ascii" for simple printers or screen
45#
46#PRINTER=	ps
47#
48#
49# How many times to check if a key has been pressed before giving up and
50# booting the default kernel. 0 actually means check once, but saves the
51# loop overhead. This value is approximately in milliseconds.
52#
53#BOOTWAIT=0
54#BOOTWAIT=30000
55#
56#
57# Allow 'cc' to generate all FPU codes. Do not use this if you intend to
58# generate code to run on machines with broken FPU emulator. Beware, this
59# is a compile-time static option to 'cc'.
60#
61#CCFPU=		yes
62#
63#
64# By default, this points to /usr/X386 for XFree86 releases 2.1 or earlier.
65# If you have XFree86 3.0 or later, you will probably want to uncomment this:
66#
67#X11BASE=	/usr/X11R6
68#
69#
70# Build `cc' using a static internals library, rather than the default
71# (dynamic) one.  This makes the compilers run faster, but at a cost of
72# about a megabyte of disk space for every language other than C.
73#
74#NO_SHARED_LIBCC_INT=	faster_cc
75#
76