]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/conf/kern.pre.mk
MFC 206082,206179,207056,207057,210612,210636,210656,212423,212426,228121,
[FreeBSD/stable/8.git] / sys / conf / kern.pre.mk
1 # $FreeBSD$
2
3 # Part of a unified Makefile for building kernels.  This part contains all
4 # of the definitions that need to be before %BEFORE_DEPEND.
5
6 .include <bsd.own.mk>
7
8 # Can be overridden by makeoptions or /etc/make.conf
9 KERNEL_KO?=     kernel
10 KERNEL?=        kernel
11 KODIR?=         /boot/${KERNEL}
12 LDSCRIPT_NAME?= ldscript.$M
13 LDSCRIPT?=      $S/conf/${LDSCRIPT_NAME}
14
15 M=      ${MACHINE_ARCH}
16
17 AWK?=           awk
18 LINT?=          lint
19 NM?=            nm
20 OBJCOPY?=       objcopy
21 SIZE?=          size
22
23 .if ${CC} == "icc"
24 COPTFLAGS?=     -O
25 .else
26 . if defined(DEBUG)
27 _MINUS_O=       -O
28 CTFFLAGS+=      -g
29 . else
30 _MINUS_O=       -O2
31 . endif
32 . if ${MACHINE_ARCH} == "amd64"
33 COPTFLAGS?=-O2 -frename-registers -pipe
34 . else
35 COPTFLAGS?=${_MINUS_O} -pipe
36 . endif
37 . if !empty(COPTFLAGS:M-O[23s]) && empty(COPTFLAGS:M-fno-strict-aliasing)
38 COPTFLAGS+= -fno-strict-aliasing
39 . endif
40 .endif
41 .if !defined(NO_CPU_COPTFLAGS)
42 . if ${CC} == "icc"
43 COPTFLAGS+= ${_ICC_CPUCFLAGS:C/(-x[^M^K^W]+)[MKW]+|-x[MKW]+/\1/}
44 . else
45 COPTFLAGS+= ${_CPUCFLAGS}
46 . endif
47 .endif
48 .if ${CC} == "icc"
49 C_DIALECT=
50 NOSTDINC= -X
51 .else
52 C_DIALECT= -std=c99
53 NOSTDINC= -nostdinc
54 .endif
55
56 INCLUDES= ${NOSTDINC} ${INCLMAGIC} -I. -I$S
57
58 # This hack lets us use the OpenBSD altq code without spamming a new
59 # include path into contrib'ed source files.
60 INCLUDES+= -I$S/contrib/altq
61
62 .if make(depend) || make(kernel-depend)
63
64 # ... and the same for ipfilter
65 INCLUDES+= -I$S/contrib/ipfilter
66
67 # ... and the same for pf
68 INCLUDES+= -I$S/contrib/pf
69
70 # ... and the same for ath
71 INCLUDES+= -I$S/dev/ath -I$S/dev/ath/ath_hal
72
73 # ... and the same for the NgATM stuff
74 INCLUDES+= -I$S/contrib/ngatm
75
76 # ... and the same for twa
77 INCLUDES+= -I$S/dev/twa
78
79 # ... and the same for XFS
80 INCLUDES+= -I$S/gnu/fs/xfs/FreeBSD -I$S/gnu/fs/xfs/FreeBSD/support -I$S/gnu/fs/xfs
81
82 # ... and the same for cxgb and cxgbe
83 INCLUDES+= -I$S/dev/cxgb -I$S/dev/cxgbe
84
85 .endif
86
87 CFLAGS= ${COPTFLAGS} ${C_DIALECT} ${DEBUG} ${CWARNFLAGS}
88 CFLAGS+= ${INCLUDES} -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h
89 .if ${CC} != "icc"
90 CFLAGS+= -fno-common -finline-limit=${INLINE_LIMIT}
91 .if ${MACHINE_ARCH} != "mips"
92 CFLAGS+= --param inline-unit-growth=100
93 CFLAGS+= --param large-function-growth=1000
94 .else
95 # XXX Actually a gross hack just for Octeon because of the Simple Executive.
96 CFLAGS+= --param inline-unit-growth=1000
97 CFLAGS+= --param large-function-growth=100000
98 .endif
99 WERROR?= -Werror
100 .endif
101
102 # XXX LOCORE means "don't declare C stuff" not "for locore.s".
103 ASM_CFLAGS= -x assembler-with-cpp -DLOCORE ${CFLAGS}
104
105 .if defined(PROFLEVEL) && ${PROFLEVEL} >= 1
106 .if ${CC} == "icc"
107 .error "Profiling doesn't work with icc yet"
108 .endif
109 CFLAGS+=        -DGPROF -falign-functions=16
110 .if ${PROFLEVEL} >= 2
111 CFLAGS+=        -DGPROF4 -DGUPROF
112 PROF=   -pg -mprofiler-epilogue
113 .else
114 PROF=   -pg
115 .endif
116 .endif
117 DEFINED_PROF=   ${PROF}
118
119 # Put configuration-specific C flags last (except for ${PROF}) so that they
120 # can override the others.
121 CFLAGS+=        ${CONF_CFLAGS}
122
123 # Optional linting. This can be overridden in /etc/make.conf.
124 LINTFLAGS=      ${LINTOBJKERNFLAGS}
125
126 NORMAL_C= ${CC} -c ${CFLAGS} ${WERROR} ${PROF} ${.IMPSRC}
127 NORMAL_S= ${CC} -c ${ASM_CFLAGS} ${WERROR} ${.IMPSRC}
128 PROFILE_C= ${CC} -c ${CFLAGS} ${WERROR} ${.IMPSRC}
129 NORMAL_C_NOWERROR= ${CC} -c ${CFLAGS} ${PROF} ${.IMPSRC}
130
131 NORMAL_M= ${AWK} -f $S/tools/makeobjops.awk ${.IMPSRC} -c ; \
132           ${CC} -c ${CFLAGS} ${WERROR} ${PROF} ${.PREFIX}.c
133
134 NORMAL_FW= uudecode -o ${.TARGET} ${.ALLSRC}
135 NORMAL_FWO= ${LD} -b binary --no-warn-mismatch -d -warn-common -r \
136         -o ${.TARGET} ${.ALLSRC:M*.fw}
137
138 .if ${MK_CTF} != "no"
139 NORMAL_CTFCONVERT=      ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
140 .elif ${MAKE_VERSION} >= 5201111300
141 NORMAL_CTFCONVERT=
142 .else
143 NORMAL_CTFCONVERT=      @:
144 .endif
145
146 NORMAL_LINT=    ${LINT} ${LINTFLAGS} ${CFLAGS:M-[DIU]*} ${.IMPSRC}
147
148 GEN_CFILES= $S/$M/$M/genassym.c ${MFILES:T:S/.m$/.c/}
149 SYSTEM_CFILES= config.c env.c hints.c vnode_if.c
150 SYSTEM_DEP= Makefile ${SYSTEM_OBJS}
151 SYSTEM_OBJS= locore.o ${MDOBJS} ${OBJS}
152 SYSTEM_OBJS+= ${SYSTEM_CFILES:.c=.o}
153 SYSTEM_OBJS+= hack.So
154 SYSTEM_LD= @${LD} -Bdynamic -T ${LDSCRIPT} --no-warn-mismatch \
155         -warn-common -export-dynamic -dynamic-linker /red/herring \
156         -o ${.TARGET} -X ${SYSTEM_OBJS} vers.o
157 SYSTEM_LD_TAIL= @${OBJCOPY} --strip-symbol gcc2_compiled. ${.TARGET} ; \
158         ${SIZE} ${.TARGET} ; chmod 755 ${.TARGET}
159 SYSTEM_DEP+= ${LDSCRIPT}
160
161 # MKMODULESENV is set here so that port makefiles can augment
162 # them.
163
164 MKMODULESENV=   MAKEOBJDIRPREFIX=${.OBJDIR}/modules KMODDIR=${KODIR}
165 .if (${KERN_IDENT} == LINT)
166 MKMODULESENV+=  ALL_MODULES=LINT
167 .endif
168 .if defined(MODULES_OVERRIDE)
169 MKMODULESENV+=  MODULES_OVERRIDE="${MODULES_OVERRIDE}"
170 .endif
171 .if defined(DEBUG)
172 MKMODULESENV+=  DEBUG_FLAGS="${DEBUG}"
173 .endif