diff options
author | eivind <eivind@FreeBSD.org> | 1998-01-12 18:29:02 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1998-01-12 18:29:02 +0000 |
commit | 9d57fd98bec77625b6d29e2fa88f217718adddf8 (patch) | |
tree | fd415ac863013cab871f5e64e5467f6d2b6b6007 /lib | |
parent | 71338f7e5283eb2991782cf524822708c4035678 (diff) | |
download | FreeBSD-src-9d57fd98bec77625b6d29e2fa88f217718adddf8.zip FreeBSD-src-9d57fd98bec77625b6d29e2fa88f217718adddf8.tar.gz |
${TARGET} -> ${.TARGET}
Tiny pointed hat goes to: Our Makefile-meister.
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 617cb65..15d1892 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.31 1997/04/30 03:12:09 msmith Exp $ +# $Id: Makefile,v 1.32 1997/10/11 02:37:42 asami Exp $ CFLAGS+= -DLIBC_SCCS -fno-omit-frame-pointer -I${.CURDIR} OBJS= crt0.o c++rt0.o gcrt0.o scrt0.o sgcrt0.o @@ -30,7 +30,7 @@ gcrt0.o: crt0.o # dependencies fudged as for gcrt0.o scrt0.o: crt0.o ${CC} ${CFLAGS} -c -DCRT0 ${.CURDIR}/crt0.c -o ${.TARGET} - ${LD} -O ${TARGET} -x -r ${.TARGET} + ${LD} -O ${.TARGET} -x -r ${.TARGET} # dependencies fudged as for gcrt0.o sgcrt0.o: scrt0.o |