diff options
author | ache <ache@FreeBSD.org> | 1993-11-18 00:08:03 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1993-11-18 00:08:03 +0000 |
commit | caec23e957d33562b11cce9fdecc0c33749bd1b8 (patch) | |
tree | 7e02359f0a74be9037693f4bfd3377841777b0ad /lib | |
parent | 8d34e09677ace456376d841cd09fa8fb4079c71c (diff) | |
download | FreeBSD-src-caec23e957d33562b11cce9fdecc0c33749bd1b8.zip FreeBSD-src-caec23e957d33562b11cce9fdecc0c33749bd1b8.tar.gz |
-r option incorrectly removed:
it is impossible to make gcrt0.o from moncrt0.o and gmon.o without it.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/csu/i386/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile index 96c453e..f3c11c1 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} |