1999-08-28 03:08:13 +02:00
|
|
|
# $FreeBSD$
|
1994-05-28 06:10:32 +02:00
|
|
|
|
1998-12-30 13:06:08 +01:00
|
|
|
# This is the old aout only boot loader.
|
1999-11-14 14:54:44 +01:00
|
|
|
.if exists(${.CURDIR}/${MACHINE_ARCH}/boot) && ${OBJFORMAT} == "aout"
|
|
|
|
SUBDIR= ${MACHINE_ARCH}/boot
|
1999-06-03 12:38:07 +02:00
|
|
|
.elif exists(${.CURDIR}/boot) && ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf"
|
1998-12-30 13:06:08 +01:00
|
|
|
SUBDIR= boot
|
1998-10-04 02:42:08 +02:00
|
|
|
.endif
|
|
|
|
|
1999-04-21 13:09:40 +02:00
|
|
|
.if exists(${.CURDIR}/boot) && ${MACHINE_ARCH} == "alpha"
|
1998-12-30 13:06:08 +01:00
|
|
|
SUBDIR= boot
|
1998-12-30 12:17:09 +01:00
|
|
|
.endif
|
1998-11-03 07:50:58 +01:00
|
|
|
|
1998-12-30 13:06:08 +01:00
|
|
|
# KLD modules build for both a.out and ELF
|
|
|
|
SUBDIR+=modules
|
|
|
|
|
1997-07-13 09:36:20 +02:00
|
|
|
HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
|
|
|
|
|
1994-05-28 06:10:32 +02:00
|
|
|
.include <bsd.subdir.mk>
|