diff options
author | gpalmer <gpalmer@FreeBSD.org> | 1998-10-04 00:42:08 +0000 |
---|---|---|
committer | gpalmer <gpalmer@FreeBSD.org> | 1998-10-04 00:42:08 +0000 |
commit | fd3a4fe5e01e29b31affcad9345f83a29de4a917 (patch) | |
tree | 34d632ba0629e08583304367ca5db445560f923a /sys/Makefile | |
parent | 134e17765b4358e3deb99612a01ed632cde57442 (diff) | |
download | FreeBSD-src-fd3a4fe5e01e29b31affcad9345f83a29de4a917.zip FreeBSD-src-fd3a4fe5e01e29b31affcad9345f83a29de4a917.tar.gz |
Build the new boot loader on the alpha. This allows make release to work again.
Diffstat (limited to 'sys/Makefile')
-rw-r--r-- | sys/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/Makefile b/sys/Makefile index 2fcc7ff..02f77bf 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -1,10 +1,14 @@ -# $Id: Makefile,v 1.10 1998/08/27 04:26:40 jb Exp $ +# $Id: Makefile,v 1.11 1998/09/05 08:27:56 jb Exp $ # This is the old aout only boot loader. .if exists(${MACHINE}/boot) && ${OBJFORMAT} == "aout" SUBDIR= ${MACHINE}/boot .endif +.if exists(boot) && ${MACHINE_ARCH} == "alpha" +SUBDIR= boot +.endif + HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh` .include <bsd.subdir.mk> |