diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-12-30 12:06:08 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-12-30 12:06:08 +0000 |
| commit | 40b843918b0743e8e03df038841d3d7e548a62c1 (patch) | |
| tree | f6cd86cc54bd86ae89e2da21866f483368b59d31 /sys/Makefile | |
| parent | 621be74548a6d79f513646fa81d2229de4f35f78 (diff) | |
Notes
Diffstat (limited to 'sys/Makefile')
| -rw-r--r-- | sys/Makefile | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/sys/Makefile b/sys/Makefile index e13a51a785cf1..bca5eded3e541 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -1,15 +1,19 @@ -# $Id: Makefile,v 1.14 1998/11/03 06:50:58 peter Exp $ +# $Id: Makefile,v 1.15 1998/12/30 11:17:09 bde Exp $ -SUBDIR= modules - -.if ${MACHINE_ARCH} == "alpha" || ${OBJFORMAT} == "elf" -SUBDIR+=boot +# This is the old aout only boot loader. +.if exists(${MACHINE}/boot) && ${OBJFORMAT} == "aout" +SUBDIR= ${MACHINE}/boot +.elif exists(boot) && ${MACHINE} == "i386" && ${OBJFORMAT} == "elf" +SUBDIR= boot .endif -.if exists(${.CURDIR}/${MACHINE}/boot) -SUBDIR+=${MACHINE}/boot +.if exists(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> |
