summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cc/cc_tools
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2011-08-04 14:46:59 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2011-08-04 14:46:59 +0000
commitd5a9e1b1b0113d933c399233f5f330f5ac4ede3e (patch)
tree17e24b350ee6322e6450185fec795dde90d14b5b /gnu/usr.bin/cc/cc_tools
parented3251b7fa6f43b7e0c16858a78df7fd2338c23b (diff)
Add support for hppa64.
ok deraadt@
Diffstat (limited to 'gnu/usr.bin/cc/cc_tools')
-rw-r--r--gnu/usr.bin/cc/cc_tools/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile
index b4662dc08ac..7ca7db44ce6 100644
--- a/gnu/usr.bin/cc/cc_tools/Makefile
+++ b/gnu/usr.bin/cc/cc_tools/Makefile
@@ -1,5 +1,5 @@
# $FreeBSD: src/gnu/usr.bin/cc/cc_tools/Makefile,v 1.88.8.1 2009/04/15 03:14:26 kensmith Exp $
-# $OpenBSD: Makefile,v 1.10 2011/06/25 20:56:21 miod Exp $
+# $OpenBSD: Makefile,v 1.11 2011/08/04 14:46:58 kettenis Exp $
.include <bsd.own.mk>
@@ -27,6 +27,9 @@ TARGET_INC+= options.h
.if ${TARGET_ARCH} == "amd64"
TARGET_INC+= i386/biarch64.h
.endif
+.if ${TARGET_ARCH} == "hppa64"
+TARGET_INC+= pa/pa64-start.h
+.endif
.if ${TARGET_ARCH} == "sh"
TARGET_INC+= sh/little.h
.endif
@@ -74,6 +77,8 @@ TM_DEFINES+= TARGET_ENDIAN_DEFAULT=0
.if ${TARGET_ARCH} == "amd64"
TARGET_INC+= ${GCC_CPU}/x86-64.h
TARGET_INC+= ${GCC_CPU}/openbsd64.h
+.elif ${TARGET_ARCH} == "hppa64"
+TARGET_INC+= ${GCC_CPU}/openbsd64.h
.elif ${TARGET_ARCH} == "sparc64"
TARGET_INC+= ${GCC_CPU}/openbsd64.h
.elif ${TARGET_ARCH} == "i386"