summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2003-02-27 09:19:31 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2003-02-27 09:19:31 +0000
commit9ef2a48e9747c5c9ccc16ee74a7ae39aa9c587e7 (patch)
treec7ba402318fe9b5480e684c6f2b8a1b21eb41e9a
parentdce4c82d8ec3a00fb69688e28600c163adddab15 (diff)
Notes
-rw-r--r--gnu/lib/csu/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/lib/csu/Makefile b/gnu/lib/csu/Makefile
index 780e7fdcb75b..b9c9ea89ba8c 100644
--- a/gnu/lib/csu/Makefile
+++ b/gnu/lib/csu/Makefile
@@ -17,17 +17,17 @@ CFLAGS+= -I${GCCDIR}/config -I${GCCDIR} -I. \
CRTS_CFLAGS= -DCRTSTUFFS_O -DSHARED ${PICFLAG}
MKDEPCMD= CC="${CC}" MKDEP_CPP_OPTS="-M -DCRT_BEGIN" mkdep
-.if ${TARGET_ARCH} == "ia64"
+.if ${MACHINE_ARCH} == "ia64"
BEGINSRC= crtbegin.asm
ENDSRC= crtend.asm
CFLAGS+= -x assembler-with-cpp # Ugly hack
.undef SRCS # hack for 'make depend'
.endif
-.if ${TARGET_ARCH} == "powerpc"
+.if ${MACHINE_ARCH} == "powerpc"
TGTOBJS= crtsavres.o
SRCS+= crtsavres.asm
.endif
-.if ${TARGET_ARCH} == "alpha" || ${TARGET_ARCH} == "sparc64"
+.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64"
TGTOBJS= crtfastmath.o
SRCS+= crtfastmath.c
.endif