Makefile revision 53152
1# $FreeBSD: head/sys/Makefile 53152 1999-11-14 13:54:44Z marcel $
2
3# This is the old aout only boot loader.
4.if	exists(${.CURDIR}/${MACHINE_ARCH}/boot) && ${OBJFORMAT} == "aout"
5SUBDIR=	${MACHINE_ARCH}/boot
6.elif	exists(${.CURDIR}/boot) && ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf"
7SUBDIR=	boot
8.endif
9
10.if	exists(${.CURDIR}/boot) && ${MACHINE_ARCH} == "alpha"
11SUBDIR= boot
12.endif
13
14# KLD modules build for both a.out and ELF
15SUBDIR+=modules
16
17HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
18
19.include <bsd.subdir.mk>
20