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/arch/mvmeppc/stand/tftpboot/Makefile | |
parent | 98af12722fd22abf2474c0e0ff0f0dea79c510ae (diff) |
No need to explicitely link with libgcc.a
Diffstat (limited to 'sys/arch/mvmeppc/stand/tftpboot/Makefile')
-rw-r--r-- | sys/arch/mvmeppc/stand/tftpboot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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} |