summaryrefslogtreecommitdiff
path: root/lib/csu/amd64
diff options
context:
space:
mode:
authorKurt Miller <kurt@cvs.openbsd.org>2008-07-28 14:17:01 +0000
committerKurt Miller <kurt@cvs.openbsd.org>2008-07-28 14:17:01 +0000
commitba0ae2baba78ebb0e831d5c744fab11f133ca5ce (patch)
tree373198d4617d534f775cb9305e87ea0fcdc0db41 /lib/csu/amd64
parenteffb58fbc1e874896b43e42839386673a6c11d18 (diff)
Remove separate pic versions of crt0, crtbegin, crtend. Next
release we are taking a different approach. Idea from kettenis@. okay kettenis@ weingart@
Diffstat (limited to 'lib/csu/amd64')
-rw-r--r--lib/csu/amd64/Makefile23
1 files changed, 2 insertions, 21 deletions
diff --git a/lib/csu/amd64/Makefile b/lib/csu/amd64/Makefile
index 9142d06958e..9355e9abca0 100644
--- a/lib/csu/amd64/Makefile
+++ b/lib/csu/amd64/Makefile
@@ -1,9 +1,8 @@
-# $OpenBSD: Makefile,v 1.2 2008/06/25 02:47:59 kurt Exp $
+# $OpenBSD: Makefile,v 1.3 2008/07/28 14:17:00 kurt Exp $
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
@@ -21,12 +20,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
@@ -39,12 +32,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
@@ -57,12 +44,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