kern.post.mk revision 336155
1# $FreeBSD: stable/11/sys/conf/kern.post.mk 336155 2018-07-10 01:06:43Z jah $
2
3# Part of a unified Makefile for building kernels.  This part includes all
4# the definitions that need to be after all the % directives except %RULES
5# and ones that act like they are part of %RULES.
6#
7# Most make variables should not be defined in this file.  Instead, they
8# should be defined in the kern.pre.mk so that port makefiles can
9# override or augment them.
10
11# In case the config had a makeoptions DESTDIR...
12.if defined(DESTDIR)
13MKMODULESENV+=	DESTDIR="${DESTDIR}"
14.endif
15SYSDIR?= ${S:C;^[^/];${.CURDIR}/&;:tA}
16MKMODULESENV+=	KERNBUILDDIR="${.CURDIR}" SYSDIR="${SYSDIR}"
17
18.if defined(CONF_CFLAGS)
19MKMODULESENV+=	CONF_CFLAGS="${CONF_CFLAGS}"
20.endif
21
22.if defined(WITH_CTF)
23MKMODULESENV+=	WITH_CTF="${WITH_CTF}"
24.endif
25
26.if defined(WITH_EXTRA_TCP_STACKS)
27MKMODULESENV+=	WITH_EXTRA_TCP_STACKS="${WITH_EXTRA_TCP_STACKS}"
28.endif
29
30# Allow overriding the kernel debug directory, so kernel and user debug may be
31# installed in different directories. Setting it to "" restores the historical
32# behavior of installing debug files in the kernel directory.
33KERN_DEBUGDIR?=	${DEBUGDIR}
34
35.MAIN: all
36
37.for target in all clean cleandepend cleandir clobber depend install \
38    obj reinstall tags
39${target}: kernel-${target}
40.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists($S/modules)
41${target}: modules-${target}
42modules-${target}:
43	cd $S/modules; ${MKMODULESENV} ${MAKE} \
44	    ${target:S/^reinstall$/install/:S/^clobber$/cleandir/}
45.endif
46.endfor
47
48# Handle ports (as defined by the user) that build kernel modules
49.if !defined(NO_MODULES) && defined(PORTS_MODULES)
50#
51# The ports tree needs some environment variables defined to match the new kernel
52#
53# Ports search for some dependencies in PATH, so add the location of the installed files
54LOCALBASE?=	/usr/local
55# SRC_BASE is how the ports tree refers to the location of the base source files
56.if !defined(SRC_BASE)
57SRC_BASE=	${SYSDIR:H:tA}
58.endif
59# OSVERSION is used by some ports to determine build options
60.if !defined(OSRELDATE)
61# Definition copied from src/Makefile.inc1
62OSRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
63		    ${MAKEOBJDIRPREFIX}${SRC_BASE}/include/osreldate.h
64.endif
65# Keep the related ports builds in the obj directory so that they are only rebuilt once per kernel build
66WRKDIRPREFIX?=	${.OBJDIR}
67PORTSMODULESENV=\
68	env \
69	-u CC \
70	-u CXX \
71	-u CPP \
72	-u MAKESYSPATH \
73	-u MK_AUTO_OBJ \
74	-u MAKEOBJDIR \
75	MAKEFLAGS="${MAKEFLAGS:M*:tW:S/^-m /-m_/g:S/ -m / -m_/g:tw:N-m_*:NMK_AUTO_OBJ=*}" \
76	SYSDIR=${SYSDIR} \
77	PATH=${PATH}:${LOCALBASE}/bin:${LOCALBASE}/sbin \
78	SRC_BASE=${SRC_BASE} \
79	OSVERSION=${OSRELDATE} \
80	WRKDIRPREFIX=${WRKDIRPREFIX}
81
82# The WRKDIR needs to be cleaned before building, and trying to change the target
83# with a :C pattern below results in install -> instclean
84all:
85.for __i in ${PORTS_MODULES}
86	@${ECHO} "===> Ports module ${__i} (all)"
87	cd $${PORTSDIR:-/usr/ports}/${__i}; ${PORTSMODULESENV} ${MAKE} -B clean build
88.endfor
89
90.for __target in install reinstall clean
91${__target}: ports-${__target}
92ports-${__target}:
93.for __i in ${PORTS_MODULES}
94	@${ECHO} "===> Ports module ${__i} (${__target})"
95	cd $${PORTSDIR:-/usr/ports}/${__i}; ${PORTSMODULESENV} ${MAKE} -B ${__target:C/install/deinstall reinstall/:C/reinstall/deinstall reinstall/}
96.endfor
97.endfor
98.endif
99
100.ORDER: kernel-install modules-install
101
102beforebuild: .PHONY
103kernel-all: beforebuild .WAIT ${KERNEL_KO} ${KERNEL_EXTRA}
104
105kernel-cleandir: kernel-clean kernel-cleandepend
106
107kernel-clobber:
108	find . -maxdepth 1 ! -type d ! -name version -delete
109
110kernel-obj:
111
112.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists($S/modules)
113modules: modules-all
114
115.if !defined(NO_MODULES_OBJ)
116modules-all modules-depend: modules-obj
117.endif
118.endif
119
120.if !defined(DEBUG)
121FULLKERNEL=	${KERNEL_KO}
122.else
123FULLKERNEL=	${KERNEL_KO}.full
124${KERNEL_KO}: ${FULLKERNEL} ${KERNEL_KO}.debug
125	${OBJCOPY} --strip-debug --add-gnu-debuglink=${KERNEL_KO}.debug \
126	    ${FULLKERNEL} ${.TARGET}
127${KERNEL_KO}.debug: ${FULLKERNEL}
128	${OBJCOPY} --only-keep-debug ${FULLKERNEL} ${.TARGET}
129install.debug reinstall.debug: gdbinit
130	cd ${.CURDIR}; ${MAKE} ${.TARGET:R}
131
132# Install gdbinit files for kernel debugging.
133gdbinit:
134	grep -v '# XXX' ${S}/../tools/debugscripts/dot.gdbinit | \
135	    sed "s:MODPATH:${.OBJDIR}/modules:" > .gdbinit
136	cp ${S}/../tools/debugscripts/gdbinit.kernel ${.CURDIR}
137.if exists(${S}/../tools/debugscripts/gdbinit.${MACHINE_CPUARCH})
138	cp ${S}/../tools/debugscripts/gdbinit.${MACHINE_CPUARCH} \
139	    ${.CURDIR}/gdbinit.machine
140.endif
141.endif
142
143${FULLKERNEL}: ${SYSTEM_DEP} vers.o
144	@rm -f ${.TARGET}
145	@echo linking ${.TARGET}
146	${SYSTEM_LD}
147.if !empty(MD_ROOT_SIZE_CONFIGURED) && defined(MFS_IMAGE)
148	@sh ${S}/tools/embed_mfs.sh ${.TARGET} ${MFS_IMAGE}
149.endif
150.if ${MK_CTF} != "no"
151	@echo ${CTFMERGE} ${CTFFLAGS} -o ${.TARGET} ...
152	@${CTFMERGE} ${CTFFLAGS} -o ${.TARGET} ${SYSTEM_OBJS} vers.o
153.endif
154.if !defined(DEBUG)
155	${OBJCOPY} --strip-debug ${.TARGET}
156.endif
157	${SYSTEM_LD_TAIL}
158
159OBJS_DEPEND_GUESS+=	assym.s vnode_if.h ${BEFORE_DEPEND:M*.h} \
160			${MFILES:T:S/.m$/.h/}
161LNFILES=	${CFILES:T:S/.c$/.ln/}
162
163.for mfile in ${MFILES}
164# XXX the low quality .m.o rules gnerated by config are normally used
165# instead of the .m.c rules here.
166${mfile:T:S/.m$/.c/}: ${mfile}
167	${AWK} -f $S/tools/makeobjops.awk ${mfile} -c
168${mfile:T:S/.m$/.h/}: ${mfile}
169	${AWK} -f $S/tools/makeobjops.awk ${mfile} -h
170.endfor
171
172kernel-clean:
173	rm -f *.o *.so *.pico *.ko *.s eddep errs \
174	    ${FULLKERNEL} ${KERNEL_KO} ${KERNEL_KO}.debug \
175	    linterrs tags vers.c \
176	    vnode_if.c vnode_if.h vnode_if_newproto.h vnode_if_typedef.h \
177	    ${MFILES:T:S/.m$/.c/} ${MFILES:T:S/.m$/.h/} \
178	    ${CLEAN}
179
180lint: ${LNFILES}
181	${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC} 2>&1 | \
182	    tee -a linterrs
183
184# This is a hack.  BFD "optimizes" away dynamic mode if there are no
185# dynamic references.  We could probably do a '-Bforcedynamic' mode like
186# in the a.out ld.  For now, this works.
187HACK_EXTRA_FLAGS?= -shared
188hack.pico: Makefile
189	:> hack.c
190	${CC} ${HACK_EXTRA_FLAGS} -nostdlib hack.c -o hack.pico
191	rm -f hack.c
192
193assym.s: $S/kern/genassym.sh genassym.o
194	NM='${NM}' NMFLAGS='${NMFLAGS}' sh $S/kern/genassym.sh genassym.o > ${.TARGET}
195
196genassym.o: $S/$M/$M/genassym.c
197	${CC} -c ${CFLAGS:N-flto:N-fno-common} $S/$M/$M/genassym.c
198
199${SYSTEM_OBJS} genassym.o vers.o: opt_global.h
200
201.if !empty(.MAKE.MODE:Unormal:Mmeta) && empty(.MAKE.MODE:Unormal:Mnofilemon)
202_meta_filemon=	1
203.endif
204# Skip reading .depend when not needed to speed up tree-walks and simple
205# lookups.  For install, only do this if no other targets are specified.
206# Also skip generating or including .depend.* files if in meta+filemon mode
207# since it will track dependencies itself.  OBJS_DEPEND_GUESS is still used.
208.if !empty(.MAKEFLAGS:M-V${_V_READ_DEPEND}) || make(*obj) || \
209    ${.TARGETS:M*clean*} == ${.TARGETS} || \
210    ${.TARGETS:M*install*} == ${.TARGETS} || \
211    defined(_meta_filemon)
212_SKIP_READ_DEPEND=	1
213.MAKE.DEPENDFILE=	/dev/null
214.endif
215
216kernel-depend: .depend
217SRCS=	assym.s vnode_if.h ${BEFORE_DEPEND} ${CFILES} \
218	${SYSTEM_CFILES} ${GEN_CFILES} ${SFILES} \
219	${MFILES:T:S/.m$/.h/}
220DEPENDFILES=	.depend .depend.*
221DEPENDOBJS+=	${SYSTEM_OBJS} genassym.o
222DEPENDFILES_OBJS=	${DEPENDOBJS:O:u:C/^/.depend./}
223.if ${MAKE_VERSION} < 20160220
224DEPEND_MP?=	-MP
225.endif
226DEPEND_CFLAGS+=	-MD ${DEPEND_MP} -MF.depend.${.TARGET}
227DEPEND_CFLAGS+=	-MT${.TARGET}
228.if !defined(_meta_filemon)
229.if defined(.PARSEDIR)
230# Only add in DEPEND_CFLAGS for CFLAGS on files we expect from DEPENDOBJS
231# as those are the only ones we will include.
232DEPEND_CFLAGS_CONDITION= "${DEPENDOBJS:M${.TARGET}}" != ""
233CFLAGS+=	${${DEPEND_CFLAGS_CONDITION}:?${DEPEND_CFLAGS}:}
234.else
235CFLAGS+=	${DEPEND_CFLAGS}
236.endif
237.if !defined(_SKIP_READ_DEPEND)
238.for __depend_obj in ${DEPENDFILES_OBJS}
239.if ${MAKE_VERSION} < 20160220
240.sinclude "${.OBJDIR}/${__depend_obj}"
241.else
242.dinclude "${.OBJDIR}/${__depend_obj}"
243.endif
244.endfor
245.endif	# !defined(_SKIP_READ_DEPEND)
246.endif	# !defined(_meta_filemon)
247
248# Always run 'make depend' to generate dependencies early and to avoid the
249# need for manually running it.  For the kernel this is mostly a NOP since
250# all dependencies are correctly added or accounted for.  This is mostly to
251# ensure downstream uses of kernel-depend are handled.
252beforebuild: kernel-depend
253
254# Guess some dependencies for when no ${DEPENDFILE}.OBJ is generated yet.
255# For meta+filemon the .meta file is checked for since it is the dependency
256# file used.
257.for __obj in ${DEPENDOBJS:O:u}
258.if (defined(_meta_filemon) && !exists(${.OBJDIR}/${__obj}.meta)) || \
259    (!defined(_meta_filemon) && !exists(${.OBJDIR}/.depend.${__obj}))
260.if ${SYSTEM_OBJS:M${__obj}}
261${__obj}: ${OBJS_DEPEND_GUESS}
262.endif
263${__obj}: ${OBJS_DEPEND_GUESS.${__obj}}
264.elif defined(_meta_filemon)
265# For meta mode we still need to know which file to depend on to avoid
266# ambiguous suffix transformation rules from .PATH.  Meta mode does not
267# use .depend files.  We really only need source files, not headers since
268# they are typically in SRCS/beforebuild already.  For target-specific
269# guesses do include headers though since they may not be in SRCS.
270.if ${SYSTEM_OBJS:M${__obj}}
271${__obj}: ${OBJS_DEPEND_GUESS:N*.h}
272.endif
273${__obj}: ${OBJS_DEPEND_GUESS.${__obj}}
274.endif
275.endfor
276
277.NOPATH: .depend ${DEPENDFILES_OBJS}
278
279.depend: .PRECIOUS ${SRCS}
280
281_ILINKS= machine
282.if ${MACHINE} != ${MACHINE_CPUARCH} && ${MACHINE} != "arm64"
283_ILINKS+= ${MACHINE_CPUARCH}
284.endif
285.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
286_ILINKS+= x86
287.endif
288
289# Ensure that the link exists without depending on it when it exists.
290.for _link in ${_ILINKS}
291.if !exists(${.OBJDIR}/${_link})
292${SRCS} ${CLEAN:M*.o}: ${_link}
293.endif
294.endfor
295
296${_ILINKS}:
297	@case ${.TARGET} in \
298	machine) \
299		path=${S}/${MACHINE}/include ;; \
300	*) \
301		path=${S}/${.TARGET}/include ;; \
302	esac ; \
303	${ECHO} ${.TARGET} "->" $$path ; \
304	ln -fhs $$path ${.TARGET}
305
306# .depend needs include links so we remove them only together.
307kernel-cleandepend: .PHONY
308	rm -f ${DEPENDFILES} ${_ILINKS}
309
310kernel-tags:
311	@[ -f .depend ] || { echo "you must make depend first"; exit 1; }
312	sh $S/conf/systags.sh
313
314kernel-install: .PHONY
315	@if [ ! -f ${KERNEL_KO} ] ; then \
316		echo "You must build a kernel first." ; \
317		exit 1 ; \
318	fi
319.if exists(${DESTDIR}${KODIR})
320	-thiskernel=`sysctl -n kern.bootfile` ; \
321	if [ ! "`dirname "$$thiskernel"`" -ef ${DESTDIR}${KODIR} ] ; then \
322		chflags -R noschg ${DESTDIR}${KODIR} ; \
323		rm -rf ${DESTDIR}${KODIR} ; \
324		rm -rf ${DESTDIR}${KERN_DEBUGDIR}${KODIR} ; \
325	else \
326		if [ -d ${DESTDIR}${KODIR}.old ] ; then \
327			chflags -R noschg ${DESTDIR}${KODIR}.old ; \
328			rm -rf ${DESTDIR}${KODIR}.old ; \
329		fi ; \
330		mv ${DESTDIR}${KODIR} ${DESTDIR}${KODIR}.old ; \
331		if [ -n "${KERN_DEBUGDIR}" -a \
332		     -d ${DESTDIR}${KERN_DEBUGDIR}${KODIR} ]; then \
333			rm -rf ${DESTDIR}${KERN_DEBUGDIR}${KODIR}.old ; \
334			mv ${DESTDIR}${KERN_DEBUGDIR}${KODIR} ${DESTDIR}${KERN_DEBUGDIR}${KODIR}.old ; \
335		fi ; \
336		sysctl kern.bootfile=${DESTDIR}${KODIR}.old/"`basename "$$thiskernel"`" ; \
337	fi
338.endif
339	mkdir -p ${DESTDIR}${KODIR}
340	${INSTALL} -p -m 555 -o ${KMODOWN} -g ${KMODGRP} ${KERNEL_KO} ${DESTDIR}${KODIR}/
341.if defined(DEBUG) && !defined(INSTALL_NODEBUG) && ${MK_KERNEL_SYMBOLS} != "no"
342	mkdir -p ${DESTDIR}${KERN_DEBUGDIR}${KODIR}
343	${INSTALL} -p -m 555 -o ${KMODOWN} -g ${KMODGRP} ${KERNEL_KO}.debug ${DESTDIR}${KERN_DEBUGDIR}${KODIR}/
344.endif
345.if defined(KERNEL_EXTRA_INSTALL)
346	${INSTALL} -p -m 555 -o ${KMODOWN} -g ${KMODGRP} ${KERNEL_EXTRA_INSTALL} ${DESTDIR}${KODIR}/
347.endif
348
349
350
351kernel-reinstall:
352	@-chflags -R noschg ${DESTDIR}${KODIR}
353	${INSTALL} -p -m 555 -o ${KMODOWN} -g ${KMODGRP} ${KERNEL_KO} ${DESTDIR}${KODIR}/
354.if defined(DEBUG) && !defined(INSTALL_NODEBUG) && ${MK_KERNEL_SYMBOLS} != "no"
355	${INSTALL} -p -m 555 -o ${KMODOWN} -g ${KMODGRP} ${KERNEL_KO}.debug ${DESTDIR}${KERN_DEBUGDIR}${KODIR}/
356.endif
357
358config.o env.o hints.o vers.o vnode_if.o:
359	${NORMAL_C}
360	${NORMAL_CTFCONVERT}
361
362config.ln env.ln hints.ln vers.ln vnode_if.ln:
363	${NORMAL_LINT}
364
365.if ${MK_REPRODUCIBLE_BUILD} != "no"
366REPRO_FLAG="-r"
367.endif
368vers.c: $S/conf/newvers.sh $S/sys/param.h ${SYSTEM_DEP}
369	MAKE=${MAKE} sh $S/conf/newvers.sh ${REPRO_FLAG} ${KERN_IDENT}
370
371vnode_if.c: $S/tools/vnode_if.awk $S/kern/vnode_if.src
372	${AWK} -f $S/tools/vnode_if.awk $S/kern/vnode_if.src -c
373
374vnode_if.h vnode_if_newproto.h vnode_if_typedef.h: $S/tools/vnode_if.awk \
375    $S/kern/vnode_if.src
376vnode_if.h: vnode_if_newproto.h vnode_if_typedef.h
377	${AWK} -f $S/tools/vnode_if.awk $S/kern/vnode_if.src -h
378vnode_if_newproto.h:
379	${AWK} -f $S/tools/vnode_if.awk $S/kern/vnode_if.src -p
380vnode_if_typedef.h:
381	${AWK} -f $S/tools/vnode_if.awk $S/kern/vnode_if.src -q
382
383.if ${MFS_IMAGE:Uno} != "no"
384.if empty(MD_ROOT_SIZE_CONFIGURED)
385# Generate an object file from the file system image to embed in the kernel
386# via linking. Make sure the contents are in the mfs section and rename the
387# start/end/size variables to __start_mfs, __stop_mfs, and mfs_size,
388# respectively.
389embedfs_${MFS_IMAGE:T:R}.o: ${MFS_IMAGE}
390	${OBJCOPY} --input-target binary \
391	    --output-target ${EMBEDFS_FORMAT.${MACHINE_ARCH}} \
392	    --binary-architecture ${EMBEDFS_ARCH.${MACHINE_ARCH}} \
393	    ${MFS_IMAGE} ${.TARGET}
394	${OBJCOPY} \
395	    --rename-section .data=mfs,contents,alloc,load,readonly,data \
396	    --redefine-sym \
397		_binary_${MFS_IMAGE:C,[^[:alnum:]],_,g}_size=__mfs_root_size \
398	    --redefine-sym \
399		_binary_${MFS_IMAGE:C,[^[:alnum:]],_,g}_start=mfs_root \
400	    --redefine-sym \
401		_binary_${MFS_IMAGE:C,[^[:alnum:]],_,g}_end=mfs_root_end \
402	    ${.TARGET}
403.endif
404.endif
405
406# XXX strictly, everything depends on Makefile because changes to ${PROF}
407# only appear there, but we don't handle that.
408
409.include "kern.mk"
410