summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gnu/lib/Makefile9
-rw-r--r--usr.bin/Makefile7
2 files changed, 13 insertions, 3 deletions
diff --git a/gnu/lib/Makefile b/gnu/lib/Makefile
index cfd5060..b0221f9 100644
--- a/gnu/lib/Makefile
+++ b/gnu/lib/Makefile
@@ -1,6 +1,13 @@
# $FreeBSD$
-SUBDIR= csu libdialog libgcc libregex libreadline
+.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "sparc64"
+SUBDIR+= csu libgcc
+NO_CXX= yes
+NO_OBJC=yes
+NO_FORTRAN=yes
+.endif
+
+SUBDIR+= libdialog libregex libreadline
.if ${OBJFORMAT} == aout
.if !defined(NOLIBC_R)
diff --git a/usr.bin/Makefile b/usr.bin/Makefile
index 021e65b..04baf18 100644
--- a/usr.bin/Makefile
+++ b/usr.bin/Makefile
@@ -53,7 +53,6 @@ SUBDIR= apply \
fsync \
ftp \
gencat \
- getconf \
getopt \
gprof \
head \
@@ -232,9 +231,13 @@ SUBDIR+=ar \
SUBDIR+=uac
.endif
-.if ${MACHINE_ARCH} != "ia64"
+# Things which don't compile on new platforms yet:
+.if ${MACHINE_ARCH} != "sparc64" && ${MACHINE_ARCH} != "ia64"
SUBDIR+=xlint
.endif
+.if ${MACHINE_ARCH} != "sparc64"
+SUBDIR+=getconf
+.endif
.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
SUBDIR+=chkey newkey
OpenPOWER on IntegriCloud