diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2000-12-28 21:21:26 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2000-12-28 21:21:26 +0000 |
commit | 04543715fa935d729f789d1b2eb75219618bc1fe (patch) | |
tree | eed197f84dd4a813fdb8cd8408393b36879ccd64 /sys/arch/mvme88k/stand | |
parent | 9b380a56fa3b912a22101b3dae3012bf78d5255f (diff) |
mvme88k updates to -current. finally!
Diffstat (limited to 'sys/arch/mvme88k/stand')
-rw-r--r-- | sys/arch/mvme88k/stand/Makefile | 9 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/installboot/Makefile | 8 |
2 files changed, 13 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/stand/Makefile b/sys/arch/mvme88k/stand/Makefile index b74ae3b53b6..404fda74972 100644 --- a/sys/arch/mvme88k/stand/Makefile +++ b/sys/arch/mvme88k/stand/Makefile @@ -1,5 +1,10 @@ -# $OpenBSD: Makefile,v 1.4 1998/08/22 08:57:27 smurph Exp $ +# $OpenBSD: Makefile,v 1.5 2000/12/28 21:21:25 smurph Exp $ +.if ${MACHINE} == "mvme88k" -SUBDIR= bugcrt libbug libsa libz wrtvid bootsd bootxx bootst netboot installboot +SUBDIR= bugcrt libbug libsa libz wrtvid bootsd bootxx bootst netboot #sboot XXX future +.endif + +SUBDIR+=installboot + .include <bsd.subdir.mk> diff --git a/sys/arch/mvme88k/stand/installboot/Makefile b/sys/arch/mvme88k/stand/installboot/Makefile index 1315c134f7c..569cab3fac3 100644 --- a/sys/arch/mvme88k/stand/installboot/Makefile +++ b/sys/arch/mvme88k/stand/installboot/Makefile @@ -1,5 +1,6 @@ -# $OpenBSD: Makefile,v 1.4 1999/09/27 19:30:00 smurph Exp $ +# $OpenBSD: Makefile,v 1.5 2000/12/28 21:21:25 smurph Exp $ +.if ${MACHINE} == "mvme88k" PROG= installboot MAN= installboot.8 MANSUBDIR=/mvme88k @@ -9,7 +10,10 @@ DPADD=${LIBUTIL} LDADD=-lutil CFLAGS+=-O0 # Need this to work in the miniroot - LDSTATIC=-static +.else +NOPROG= +.endif .include <bsd.prog.mk> + |