1# $FreeBSD$ 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= -O2 -m486 -pipe 15# 16# Another useful entry is 17# 18#NOPROFILE= true 19# Avoid compiling profiled libraries 20# 21# To have 'obj' symlinks created in your source directory 22# (they aren't needed/necessary) 23#OBJLINK= yes 24# 25# To compile the kernel with special optimisations, you can use this: 26# 27#COPTFLAGS= -O -pipe 28# 29# To compile and install the 4.4 lite libm instead of the default use: 30# 31#WANT_CSRG_LIBM= yes 32# 33# 34# If you do not want unformatted manual pages to be compressed 35# when they are installed: 36# 37#NOMANCOMPRESS= true 38# 39# 40# If you want the "compat" shared libraries installed as part of your normal 41# builds, uncomment these: 42# 43#COMPAT1X= yes 44#COMPAT20= yes 45#COMPAT21= yes 46# 47# 48# If you do not want additional documentation (some of which are 49# a few hundred KB's) for ports to be installed: 50# 51#NOPORTDOCS= true 52# 53# 54# Default format for system documentation, depends on your printer. 55# Set this to "ascii" for simple printers or screen 56# 57#PRINTER= ps 58# 59# 60# How long to wait for a console keypress before booting the default kernel. 61# This value is approximately in milliseconds. Keypresses are accepted by the 62# BIOS before booting from disk, making it possible to give custom boot 63# parameters even when this is set to 0. 64# 65#BOOTWAIT=0 66#BOOTWAIT=30000 67# 68# By default, the system will always use the keyboard/video card as system 69# console. However, the boot blocks may be configured to use a serial port 70# or probe the hardware to determine if the serial port or kbd/video should 71# be used. 72# 73# By default we use COM1 as our serial console port *if* we're going to use 74# a serial port as our console at all. (0x3E8 = COM2) 75# 76#BOOT_COMCONSOLE_PORT= 0x3F8 77# 78# Uncomment the following line to test if a keyboard is present. If the 79# keyboard isn't there, use the serial port as console. 80# 81#BOOT_PROBE_KEYBOARD= true 82# 83# Uncomment the following line to read the keyboard lock switch. If the 84# keyboard is locked, use the serial port as console. 85# 86#BOOT_PROBE_KEYBOARD_LOCK= true 87# 88# Uncomment the following line to always force the use of a serial console. 89# 90#BOOT_FORCE_COMCONSOLE= true 91# 92# By default, this points to /usr/X11R6 for XFree86 releases 3.0 or earlier. 93# If you have a XFree86 from before 3.0 that has the X distribution in 94# /usr/X386, you want to uncomment this. 95# 96#X11BASE= /usr/X386 97# 98# 99# If you have Motif on your system, uncomment this. 100# 101#HAVE_MOTIF= yes 102# 103# If the default location of the Motif library (specified below) is NOT 104# appropriate for you, uncomment this and change it to the correct value. 105# If your motif is in ${X11BASE}/lib, you don't need to touch this line. 106# 107#MOTIFLIB= -L${X11BASE}/lib -lXm 108# 109# 110# If you are running behind a firewall, uncomment the following to leave a 111# hint for various make-spawned utilities that they should use passive FTP. 112# 113#FTP_PASSIVE_MODE= YES 114# 115# 116# Kerberos IV 117# If you want the eBones-based Kerberos, define this: 118# 119#MAKE_EBONES= yes 120# 121# 122# SUP/CVSup updates 123# 124#SUP_UPDATE= yes 125# 126# SUP block 127# 128#SUP= sup 129#SUPFLAGS= -v 130#SUPFILE= /usr/share/examples/sup/standard-supfile 131#SUPFILE1= /usr/share/examples/sup/secure-supfile 132#SUPFILE2= /usr/share/examples/sup/ports-supfile 133# 134# CVSup block 135# 136#SUP= /usr/local/bin/cvsup 137#SUPFLAGS= -g -L 2 -z 138#SUPFILE= /usr/share/examples/cvsup/standard-supfile 139#SUPFILE1= /usr/share/examples/cvsup/secure-supfile 140#SUPFILE2= /usr/share/examples/cvsup/ports-supfile 141