diff options
Diffstat (limited to 'lib/csu/hppa64/Makefile')
-rw-r--r-- | lib/csu/hppa64/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/csu/hppa64/Makefile b/lib/csu/hppa64/Makefile index 8dfda6a36bb..b86144e75ed 100644 --- a/lib/csu/hppa64/Makefile +++ b/lib/csu/hppa64/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2011/11/08 10:37:09 guenther Exp $ +# $OpenBSD: Makefile,v 1.5 2013/12/03 06:21:40 guenther Exp $ # from: @(#)Makefile 5.5 (Berkeley) 5/21/91 OBJS= crt0.o gcrt0.o crtbegin.o crtend.o crtbeginS.o crtendS.o @@ -11,14 +11,14 @@ CFLAGS+= -I${ELFDIR} -I${.CURDIR} all: ${OBJS} crt0.o: crt0.c - @echo ${COMPILE.c} -DCRT0 ${.CURDIR}/crt0.c -o ${.TARGET} - @${COMPILE.c} -DCRT0 ${.CURDIR}/crt0.c -o ${.TARGET}.o + @echo ${COMPILE.c} -DCRT0 ${ELFDIR}/crt0.c -o ${.TARGET} + @${COMPILE.c} -DCRT0 ${ELFDIR}/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 + @echo ${COMPILE.c} -DMCRT0 ${ELFDIR}/crt0.c -o ${.TARGET} + @${COMPILE.c} -DMCRT0 ${ELFDIR}/crt0.c -o ${.TARGET}.o @${LD} -x -r -o ${.TARGET} ${.TARGET}.o @rm -f ${.TARGET}.o |