All platforms should be on equal footing now -- no special handling for

Sparc64 and IA-64.
This commit is contained in:
David E. O'Brien 2002-05-10 00:49:55 +00:00
parent 67b831cca6
commit 2fe1eb28ab

View file

@ -1,14 +1,6 @@
# $FreeBSD$
.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "sparc64"
SUBDIR+= csu libgcc
.else
NO_CXX= yes
NO_OBJC=yes
NO_FORTRAN=yes
.endif
SUBDIR+= libdialog libregex libreadline
SUBDIR= csu libgcc libdialog libregex libreadline
.if ${OBJFORMAT} == aout
.if !defined(NOLIBC_R)
@ -16,8 +8,12 @@ SUBDIR+= libgcc_r
.endif
.endif
.if ${CXX:T} == "c++"
NO_CXX= yes
.endif
.if !defined(NO_CXX)
SUBDIR+= libstdc++
SUBDIR+= libsupc++ libstdc++
.endif
.if !defined(NO_OBJC)