diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 1998-08-22 09:25:12 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 1998-08-22 09:25:12 +0000 |
commit | 7fb80dfd1921601d185d9b7721ad97871cc8f463 (patch) | |
tree | e2332ff76f14315e4cf2eb81294b5f9babee9089 /sys/arch/mvme88k | |
parent | 2322741e58a481c8a6be6953f99ee13129bb0d2f (diff) |
fixed Makefiles. Removed reference to libgcc.a
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/stand/bootsd/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/bootst/Makefile | 14 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/bootxx/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/netboot/Makefile | 10 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/sboot/Makefile | 4 |
5 files changed, 18 insertions, 18 deletions
diff --git a/sys/arch/mvme88k/stand/bootsd/Makefile b/sys/arch/mvme88k/stand/bootsd/Makefile index 645a742edb4..ca7ae74a7c1 100644 --- a/sys/arch/mvme88k/stand/bootsd/Makefile +++ b/sys/arch/mvme88k/stand/bootsd/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.2 1998/08/22 07:17:15 smurph Exp $ +# $OpenBSD: Makefile,v 1.3 1998/08/22 09:25:06 smurph Exp $ RELOC=0x3F0000 @@ -18,7 +18,7 @@ CLEANFILES+=bootsd SRCS= boot.c conf.c version.c -LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} libgcc.a +LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} OBJS= ${SRCS:N*.h:R:S/$/.o/g} diff --git a/sys/arch/mvme88k/stand/bootst/Makefile b/sys/arch/mvme88k/stand/bootst/Makefile index 399b6b5ff3e..ea323b62353 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 -# $Id: Makefile,v 1.2 1998/08/18 04:21:23 smurph Exp $ +# $Id: Makefile,v 1.3 1998/08/22 09:25:07 smurph Exp $ RELOC=0x3F0000 @@ -13,15 +13,15 @@ CLEANFILES+=stboot bootst bootst.bug #.PATH: ${S}/arch/${MACHINE_ARCH}/${MACHINE_ARCH} #.PATH: ${S}/lib/libsa -.include "${S}/arch/${MACHINE}/stand/libsa/Makefile.inc" -.include "${S}/arch/${MACHINE}/stand/libbug/Makefile.inc" -.include "${S}/arch/${MACHINE}/stand/bugcrt/Makefile.inc" -.include "${S}/arch/${MACHINE}/stand/libz/Makefile.inc" -.include "${S}/arch/${MACHINE}/stand/wrtvid/Makefile.inc" +.include "${S}/arch/mvme88k/stand/libsa/Makefile.inc" +.include "${S}/arch/mvme88k/stand/libbug/Makefile.inc" +.include "${S}/arch/mvme88k/stand/bugcrt/Makefile.inc" +.include "${S}/arch/mvme88k/stand/libz/Makefile.inc" +.include "${S}/arch/mvme88k/stand/wrtvid/Makefile.inc" SRCS= bootst.c bcopy.c version.c -LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} libgcc.a +LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} OBJS= ${SRCS:N*.h:R:S/$/.o/g} diff --git a/sys/arch/mvme88k/stand/bootxx/Makefile b/sys/arch/mvme88k/stand/bootxx/Makefile index abe5050b657..9d4e72acdf3 100644 --- a/sys/arch/mvme88k/stand/bootxx/Makefile +++ b/sys/arch/mvme88k/stand/bootxx/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.1 1998/08/22 08:27:07 smurph Exp $ +# $OpenBSD: Makefile,v 1.2 1998/08/22 09:25:08 smurph Exp $ RELOC=0x3F0000 @@ -17,7 +17,7 @@ CLEANFILES+=bootxx SRCS= bootxx.c conf.c version.c -LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} libgcc.a +LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} OBJS= ${SRCS:N*.h:R:S/$/.o/g} diff --git a/sys/arch/mvme88k/stand/netboot/Makefile b/sys/arch/mvme88k/stand/netboot/Makefile index a14ac466850..b38a3fb63d2 100644 --- a/sys/arch/mvme88k/stand/netboot/Makefile +++ b/sys/arch/mvme88k/stand/netboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1998/08/22 08:37:52 smurph Exp $ +# $OpenBSD: Makefile,v 1.4 1998/08/22 09:25:10 smurph Exp $ RELOC=0x3F0000 SIZE?= size @@ -10,10 +10,10 @@ INCPATH=-I${.CURDIR} -I${.CURDIR}/../libsa -I${.CURDIR}/../libbug \ CFLAGS= -O2 ${DEFS} ${INCPATH} ${COPTS} CLEANFILES+=netboot netboot.bin -.include "${S}/arch/${MACHINE}/stand/bugcrt/Makefile.inc" -.include "${S}/arch/${MACHINE}/stand/libbug/Makefile.inc" -.include "${S}/arch/${MACHINE}/stand/libsa/Makefile.inc" -.include "${S}/arch/${MACHINE}/stand/libz/Makefile.inc" +.include "${S}/arch/mvme88k/stand/bugcrt/Makefile.inc" +.include "${S}/arch/mvme88k/stand/libbug/Makefile.inc" +.include "${S}/arch/mvme88k/stand/libsa/Makefile.inc" +.include "${S}/arch/mvme88k/stand/libz/Makefile.inc" SRCS= boot.c conf.c version.c devopen.c dev_net.c SRCS+= if_ie.c if_le.c diff --git a/sys/arch/mvme88k/stand/sboot/Makefile b/sys/arch/mvme88k/stand/sboot/Makefile index 076deb2e306..2ce290527cc 100644 --- a/sys/arch/mvme88k/stand/sboot/Makefile +++ b/sys/arch/mvme88k/stand/sboot/Makefile @@ -1,10 +1,10 @@ -# $Id: Makefile,v 1.2 1997/04/27 20:56:34 millert Exp $ +# $Id: Makefile,v 1.3 1998/08/22 09:25:11 smurph Exp $ S= ${.CURDIR}/../../../.. INCL?= -I${.CURDIR} -I${.CURDIR}/../libsa -I${S}/lib/libsa -I${S} COPTS?= ${DEFS} ${INCL} -.include "${S}/arch/${MACHINE}/stand/libsa/Makefile.inc" +.include "${S}/arch/mvme88k/stand/libsa/Makefile.inc" SRCS= sboot.c clock.c etherfun.c if_le.c |