1# $Id: make.conf,v 1.7 1994/06/15 21:32:38 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# 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# How many times to check if a key has been pressed before giving up and 49# booting the default kernel. 0 actually means check once, but saves the 50# loop overhead. 51# 52#BOOTWAIT=0 53#BOOTWAIT=640000 54# 55# 56# Allow 'cc' to generate all FPU codes. Do not use this if you intend to 57# generate code to run on machines with broken FPU emulator. Beware, this 58# is a compile-time static option to 'cc'. 59# 60#CCFPU= yes 61# 62# 63# If you use national 8-bit charset and your charset description is 64# installed into /usr/share/locale (see setlocale(3)), you can 65# automatically setup all ctype-oriented application to understand 66# your charset properly by two things: 67# 1) uncomment following option 68# 2) set environment variable "LANG" to your charset name 69# 70#STARTUP_LOCALE= yes 71# 72