summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k/stand/bootst/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/mvme68k/stand/bootst/Makefile')
-rw-r--r--sys/arch/mvme68k/stand/bootst/Makefile17
1 files changed, 6 insertions, 11 deletions
diff --git a/sys/arch/mvme68k/stand/bootst/Makefile b/sys/arch/mvme68k/stand/bootst/Makefile
index ee88405e7e5..c440772ddc9 100644
--- a/sys/arch/mvme68k/stand/bootst/Makefile
+++ b/sys/arch/mvme68k/stand/bootst/Makefile
@@ -1,16 +1,14 @@
# from: @(#)Makefile 8.1 (Berkeley) 6/10/93
-# $OpenBSD: Makefile,v 1.5 1996/05/10 20:03:47 deraadt Exp $
+# $OpenBSD: Makefile,v 1.6 1996/05/16 02:49:07 chuck Exp $
RELOC=0x3F0000
S= ${.CURDIR}/../../../..
-DEFS= -DSTANDALONE -DCOMPAT_NOLABEL # -DROMPRF
-INCPATH=-I${.CURDIR} -I${S} -I${.OBJDIR} -I${S}/lib/libsa
+DEFS=
+INCPATH=-I${.CURDIR} -I${.CURDIR}/../libsa -I${.CURDIR}/../libbug \
+ -I${.CURDIR}/../../include -I${S} -I${S}/lib/libsa
CFLAGS= -O2 ${INCPATH} ${DEFS} ${COPTS}
-CLEANFILES+=stboot bootst bootst.bug machine
-
-#.PATH: ${S}/arch/${MACHINE_ARCH}/${MACHINE_ARCH}
-#.PATH: ${S}/lib/libsa
+CLEANFILES+=stboot bootst bootst.bug
.include "${S}/arch/${MACHINE}/stand/libsa/Makefile.inc"
.include "${S}/arch/${MACHINE}/stand/libbug/Makefile.inc"
@@ -26,7 +24,7 @@ OBJS= ${SRCS:N*.h:R:S/$/.o/g}
BOOTS= bootst stboot
ALL= ${BOOTS}
-all: machine ${ALL}
+all: ${ALL}
bootst.bug: ${OBJS} ${BUGCRT} ${LIBS}
${LD} -s -N -T ${RELOC} ${BUGCRT} ${OBJS} ${LIBS} -o $@
@@ -38,7 +36,4 @@ bootst stboot: bootst.bug ${WRTVID}
install:
install -c -m 555 -g bin -o bin ${BOOTS} ${DESTDIR}${MDEC_DIR}
-machine:
- rm -f machine; ln -s ${.CURDIR}/../../include machine
-
.include <bsd.prog.mk>