diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-08-21 17:44:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-08-21 17:44:20 +0000 |
commit | c9f062e0e33eb618fe1780375d83b5835b3d6256 (patch) | |
tree | af3ac2b46e87b5717d7a7b2f9580e134a0b0c69d /sys | |
parent | 98af12722fd22abf2474c0e0ff0f0dea79c510ae (diff) |
No need to explicitely link with libgcc.a
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvmeppc/stand/bootsd/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/stand/bootxx/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/stand/tftpboot/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/mvmeppc/stand/bootsd/Makefile b/sys/arch/mvmeppc/stand/bootsd/Makefile index 158ce346fe2..d3655e5d237 100644 --- a/sys/arch/mvmeppc/stand/bootsd/Makefile +++ b/sys/arch/mvmeppc/stand/bootsd/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.1 2001/06/26 21:57:59 smurph Exp $ +# $OpenBSD: Makefile,v 1.2 2001/08/21 17:44:16 miod Exp $ S= ${.CURDIR}/../../../.. @@ -17,7 +17,7 @@ CLEANFILES+=bootsd SRCS= boot.c version.c -LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} ${LIBGCC} +LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} OBJS= ${SRCS:N*.h:R:S/$/.o/g} diff --git a/sys/arch/mvmeppc/stand/bootxx/Makefile b/sys/arch/mvmeppc/stand/bootxx/Makefile index 1f5fdf5af01..bb496d7cbbb 100644 --- a/sys/arch/mvmeppc/stand/bootxx/Makefile +++ b/sys/arch/mvmeppc/stand/bootxx/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.1 2001/06/26 21:58:01 smurph Exp $ +# $OpenBSD: Makefile,v 1.2 2001/08/21 17:44:19 miod Exp $ S= ${.CURDIR}/../../../.. DEFS=-DSTAGE2_RELOC=${STAGE2_RELOC} @@ -15,7 +15,7 @@ CLEANFILES+=bootxx SRCS= bootxx.c version.c -LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} ${LIBGCC} +LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} OBJS= ${SRCS:N*.h:R:S/$/.o/g} diff --git a/sys/arch/mvmeppc/stand/tftpboot/Makefile b/sys/arch/mvmeppc/stand/tftpboot/Makefile index 7c248c806bf..0a707775b34 100644 --- a/sys/arch/mvmeppc/stand/tftpboot/Makefile +++ b/sys/arch/mvmeppc/stand/tftpboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2001/06/26 21:58:09 smurph Exp $ +# $OpenBSD: Makefile,v 1.2 2001/08/21 17:44:19 miod Exp $ SIZE?= size STRIP?= strip @@ -20,7 +20,7 @@ SRCS= boot.c version.c #SRCS+= if_ie.c #SRCS+= if_le.c OBJS= ${SRCS:S/.c/.o/g} -LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} ${LIBGCC} +LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} LDFLAGS+= -s -X -N -Ttext ${STAGE1_RELOC} -e _start #LDFLAGS+= -nostdlib -s -N -Ttext ${RELOC} |