summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/stand/bootst
diff options
context:
space:
mode:
authorSteve Murphree <smurph@cvs.openbsd.org>1999-05-29 04:41:49 +0000
committerSteve Murphree <smurph@cvs.openbsd.org>1999-05-29 04:41:49 +0000
commit2205fd17e8627e7209de4cb73e2c1c335b324c53 (patch)
treebf535b9af17a64ea51dbb30f0a06956e580b283f /sys/arch/mvme88k/stand/bootst
parentdd813d9445c707cd93bbb0accfc42d555331789d (diff)
Added vme bus device drivers. MVME328, MVME376, MVME332
Diffstat (limited to 'sys/arch/mvme88k/stand/bootst')
-rw-r--r--sys/arch/mvme88k/stand/bootst/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/stand/bootst/Makefile b/sys/arch/mvme88k/stand/bootst/Makefile
index e704666e79e..8d765cc1766 100644
--- a/sys/arch/mvme88k/stand/bootst/Makefile
+++ b/sys/arch/mvme88k/stand/bootst/Makefile
@@ -1,5 +1,5 @@
# from: @(#)Makefile 8.1 (Berkeley) 6/10/93
-# $OpenBSD: Makefile,v 1.4 1998/12/15 06:09:51 smurph Exp $
+# $OpenBSD: Makefile,v 1.5 1999/05/29 04:41:47 smurph Exp $
RELOC=0xAF0000
SIZE?= size
@@ -9,6 +9,7 @@ DEFS= -DSTANDALONE -DCOMPAT_NOLABEL
INCPATH=-I${.CURDIR} -I${.CURDIR}/../libsa -I${.CURDIR}/../libbug \
-I${.CURDIR}/../../include -I${S} -I${S}/lib/libsa
CFLAGS= -O2 ${INCPATH} ${DEFS} ${COPTS}
+LDFLAGS=-s -N -T ${RELOC}
CLEANFILES+=stboot bootst bootst.bug
.include "${S}/arch/mvme88k/stand/wrtvid/Makefile.inc"
@@ -19,7 +20,7 @@ CLEANFILES+=stboot bootst bootst.bug
SRCS= boot.c conf.c dev_tape.c rawfs.c version.c
-LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} libgcc.a
+LIBS= ${LIBSA} ${LIBBUG} ${LIBZ}
OBJS= ${SRCS:N*.h:R:S/$/.o/g}
@@ -29,7 +30,7 @@ ALL= ${BOOTS}
all: ${ALL}
bootst.bug: ${OBJS} ${BUGCRT} ${LIBS}
- ${LD} -s -N -T ${RELOC} ${BUGCRT} ${OBJS} ${LIBS} -o $@
+ ${LD} ${LDFLAGS} ${BUGCRT} ${OBJS} ${LIBS} -o $@
@${SIZE} bootst.bug
bootst stboot: bootst.bug ${WRTVID}