diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-08-01 07:42:34 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-08-01 07:42:34 +0000 |
commit | 21b83086e367903f33d2971ee513fefeab8fb2c1 (patch) | |
tree | 76222058fded8245e015ac822fa568dc018b2131 /sys/arch/mvme88k/stand/netboot/Makefile | |
parent | 73eef6ca62430088ffd97b809a4a5aec3dc5299b (diff) |
${LIBGCC} is useless, since libgcc.a does not live in /usr/lib; instead,
use gcc to get the correct location.
Diffstat (limited to 'sys/arch/mvme88k/stand/netboot/Makefile')
-rw-r--r-- | sys/arch/mvme88k/stand/netboot/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/stand/netboot/Makefile b/sys/arch/mvme88k/stand/netboot/Makefile index 482e6f54d95..4a524c5e5e4 100644 --- a/sys/arch/mvme88k/stand/netboot/Makefile +++ b/sys/arch/mvme88k/stand/netboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2003/04/10 22:42:29 millert Exp $ +# $OpenBSD: Makefile,v 1.10 2003/08/01 07:42:33 miod Exp $ SIZE?= size STRIP?= strip @@ -20,15 +20,15 @@ SRCS= boot.c conf.c version.c devopen.c dev_net.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 -N -T ${STAGE2_RELOC} #LDFLAGS+= -nostdlib -s -N -Ttext ${RELOC} all: netboot.bin netboot: ${OBJS} ${SINGLE} ${LIBS} - ${LD} ${LDFLAGS} \ - ${SINGLE} ${OBJS} ${LIBS} -o $@ + ${LD} ${LDFLAGS} -o $@ \ + ${SINGLE} ${OBJS} ${LIBS} `${CC} -print-libgcc-file-name` # @${SIZE} $@ netboot.bin: netboot |