From fe596e6795a3a204c75b140b67b8ef4f949c5336 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Thu, 18 Nov 1993 00:08:03 +0000 Subject: [PATCH] -r option incorrectly removed: it is impossible to make gcrt0.o from moncrt0.o and gmon.o without it. --- lib/csu/i386/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile index 96c453e1ffee..f3c11c1f29c5 100644 --- a/lib/csu/i386/Makefile +++ b/lib/csu/i386/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.6 (Berkeley) 5/22/91 -# $Id: Makefile,v 1.5 1993/11/09 04:26:10 paul Exp $ +# $Id: Makefile,v 1.6 1993/11/16 02:22:16 paul Exp $ CFLAGS+= -DLIBC_SCCS -DDYNAMIC OBJS= crt0.o gcrt0.o @@ -19,7 +19,7 @@ moncrt0.o: crt0.c gcrt0.o: moncrt0.o gmon.o # ${LD} -x -r -o ${.TARGET} moncrt0.o gmon.o - ${LD} -o ${.TARGET} moncrt0.o gmon.o + ${LD} -r -o ${.TARGET} moncrt0.o gmon.o gmon.o: gmon.c gmon.h ${CC} ${CFLAGS} -c ${.IMPSRC}