-r option incorrectly removed:

it is impossible to make gcrt0.o from moncrt0.o and gmon.o without it.
This commit is contained in:
Andrey A. Chernov 1993-11-18 00:08:03 +00:00
parent aa0028f8cf
commit fe596e6795
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=780

View File

@ -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}