Deleted Added
full compact
kern.post.mk (138290) kern.post.mk (142413)
1# $FreeBSD: head/sys/conf/kern.post.mk 138290 2004-12-01 23:16:38Z phk $
1# $FreeBSD: head/sys/conf/kern.post.mk 142413 2005-02-25 02:25:38Z imp $
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.

--- 17 unchanged lines hidden (view full) ---

27.endif
28.endfor
29
30# Handle out of tree ports
31.if defined(PORTS_MODULES)
32.if defined(SYSDIR)
33PORTSMODULESENV=SYSDIR=${SYSDIR}
34.endif
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.

--- 17 unchanged lines hidden (view full) ---

27.endif
28.endfor
29
30# Handle out of tree ports
31.if defined(PORTS_MODULES)
32.if defined(SYSDIR)
33PORTSMODULESENV=SYSDIR=${SYSDIR}
34.endif
35.for target in all install clean
36${target}: ports-${target}
37ports-${target}:
35.for __target in all install clean
36${__target}: ports-${target}
37ports-${__target}:
38.for __i in ${PORTS_MODULES}
38.for __i in ${PORTS_MODULES}
39 cd $${PORTSDIR:-/usr/ports/}${__i}; ${PORTSMODULESENV} ${MAKE} -B ${target}
39 cd $${PORTSDIR:-/usr/ports/}${__i}; ${PORTSMODULESENV} ${MAKE} -B ${__target}
40.endfor
41.endfor
42.endif
43
44.ORDER: kernel-install modules-install
45
46kernel-all: ${KERNEL_KO}
47

--- 203 unchanged lines hidden ---
40.endfor
41.endfor
42.endif
43
44.ORDER: kernel-install modules-install
45
46kernel-all: ${KERNEL_KO}
47

--- 203 unchanged lines hidden ---