29ddf5ab88
PR: misc/4395 Submitted by: J Wunsch <j@ida.interface-business.de>
20 lines
564 B
Makefile
20 lines
564 B
Makefile
# $Id: Makefile,v 1.16 1998/12/30 12:06:08 bde Exp $
|
|
|
|
# This is the old aout only boot loader.
|
|
.if exists(${.CURDIR}/${MACHINE}/boot) && ${OBJFORMAT} == "aout"
|
|
SUBDIR= ${MACHINE}/boot
|
|
.elif exists(${.CURDIR}/boot) && ${MACHINE} == "i386" && ${OBJFORMAT} == "elf"
|
|
SUBDIR= boot
|
|
.endif
|
|
|
|
.if exists(${.CURDIR}/boot) && ${MACHINE_ARCH} == "alpha"
|
|
SUBDIR= boot
|
|
.endif
|
|
|
|
# KLD modules build for both a.out and ELF
|
|
SUBDIR+=modules
|
|
|
|
HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
|
|
|
|
.include <bsd.subdir.mk>
|