diff options
Diffstat (limited to 'gnu/usr.bin/cc/cc_tools/Makefile')
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 7 |
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" |