summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k/stand
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/mvme68k/stand')
-rw-r--r--sys/arch/mvme68k/stand/Makefile8
-rw-r--r--sys/arch/mvme68k/stand/installboot/Makefile11
2 files changed, 12 insertions, 7 deletions
diff --git a/sys/arch/mvme68k/stand/Makefile b/sys/arch/mvme68k/stand/Makefile
index a3872b95ee0..d27eb82fd6b 100644
--- a/sys/arch/mvme68k/stand/Makefile
+++ b/sys/arch/mvme68k/stand/Makefile
@@ -1,6 +1,10 @@
-# $OpenBSD: Makefile,v 1.5 2000/03/03 00:54:52 todd Exp $
+# $OpenBSD: Makefile,v 1.6 2000/05/25 21:55:03 deraadt Exp $
+.if ${MACHINE} == "mvme68k"
SUBDIR= bugcrt libbug libsa libz sboot netboot bootxx bootsd bootst \
- installboot prtvid wrtvid
+ prtvid wrtvid
+.endif
+
+SUBDIR+=installboot
.include <bsd.subdir.mk>
diff --git a/sys/arch/mvme68k/stand/installboot/Makefile b/sys/arch/mvme68k/stand/installboot/Makefile
index c6d8145831e..3f969dabdc6 100644
--- a/sys/arch/mvme68k/stand/installboot/Makefile
+++ b/sys/arch/mvme68k/stand/installboot/Makefile
@@ -1,15 +1,16 @@
-# $OpenBSD: Makefile,v 1.3 1999/09/26 18:05:32 smurph Exp $
+# $OpenBSD: Makefile,v 1.4 2000/05/25 21:55:03 deraadt Exp $
-PROG= installboot
MAN= installboot.8
MANSUBDIR=/mvme68k
+.if ${MACHINE} == "mvme68k"
+PROG= installboot
BINDIR=/usr/mdec
DPADD=${LIBUTIL}
LDADD=-lutil
-
-# Need this to work in the miniroot
-
LDSTATIC=-static
+.else
+NOPROG=
+.endif
.include <bsd.prog.mk>