diff options
Diffstat (limited to 'lib/csu/i386/Makefile')
-rw-r--r-- | lib/csu/i386/Makefile | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile index fb2c4f76508..c4f7a54f7c9 100644 --- a/lib/csu/i386/Makefile +++ b/lib/csu/i386/Makefile @@ -1,10 +1,9 @@ -# $OpenBSD: Makefile,v 1.10 2008/06/25 02:47:59 kurt Exp $ +# $OpenBSD: Makefile,v 1.11 2008/07/28 14:17:00 kurt Exp $ # from: @(#)Makefile 5.5 (Berkeley) 5/21/91 CFLAGS+= -DLIBC_SCCS -fno-omit-frame-pointer -OBJS= crt0.o pcrt0.o gcrt0.o +OBJS= crt0.o gcrt0.o OBJS+= crtbegin.o crtend.o -OBJS+= crtbeginP.o crtendP.o OBJS+= crtbeginS.o crtendS.o SRCS= crt0.c crtbegin.c crtbeginS.c crtend.c crtendS.c @@ -22,12 +21,6 @@ crt0.o: crt0.c @${LD} -x -r -o ${.TARGET} ${.TARGET}.o @rm -f ${.TARGET}.o -pcrt0.o: crt0.c - @echo ${COMPILE.c} ${PICFLAG} -DCRT0 ${.CURDIR}/crt0.c -o ${.TARGET} - @${COMPILE.c} ${PICFLAG} -DCRT0 ${.CURDIR}/crt0.c -o ${.TARGET}.o - @${LD} -x -r -o ${.TARGET} ${.TARGET}.o - @rm -f ${.TARGET}.o - gcrt0.o: crt0.c @echo ${COMPILE.c} -DMCRT0 ${.CURDIR}/crt0.c -o ${.TARGET} @${COMPILE.c} -DMCRT0 ${.CURDIR}/crt0.c -o ${.TARGET}.o @@ -40,12 +33,6 @@ crtbegin.o: crtbegin.c @${LD} -x -r -o ${.TARGET} ${.TARGET}.o @rm -f ${.TARGET}.o -crtbeginP.o: crtbegin.c - @echo ${COMPILE.c} ${PICFLAG} ${ELFDIR}/crtbegin.c -o ${.TARGET} - @${COMPILE.c} ${PICFLAG} ${ELFDIR}/crtbegin.c -o ${.TARGET}.o - @${LD} -x -r -o ${.TARGET} ${.TARGET}.o - @rm -f ${.TARGET}.o - crtbeginS.o: crtbeginS.c @echo ${COMPILE.c} ${PICFLAG} ${ELFDIR}/crtbeginS.c -o ${.TARGET} @${COMPILE.c} ${PICFLAG} ${ELFDIR}/crtbeginS.c -o ${.TARGET}.o @@ -58,12 +45,6 @@ crtend.o: crtend.c @${LD} -x -r -o ${.TARGET} ${.TARGET}.o @rm -f ${.TARGET}.o -crtendP.o: crtend.c - @echo ${COMPILE.c} ${PICFLAG} ${ELFDIR}/crtend.c -o ${.TARGET} - @${COMPILE.c} ${PICFLAG} ${ELFDIR}/crtend.c -o ${.TARGET}.o - @${LD} -x -r -o ${.TARGET} ${.TARGET}.o - @rm -f ${.TARGET}.o - crtendS.o: crtendS.c @echo ${COMPILE.c} ${PICFLAG} ${ELFDIR}/crtendS.c -o ${.TARGET} @${COMPILE.c} ${PICFLAG} ${ELFDIR}/crtendS.c -o ${.TARGET}.o |