summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cc/cc_tools
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2011-04-06 15:23:40 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2011-04-06 15:23:40 +0000
commit48cb24e5dd8bb9462afa2a3d6f14ffa3af2fe575 (patch)
treeb56695fe63b3d50bbeadcd2a2c2c6d74b0826056 /gnu/usr.bin/cc/cc_tools
parentd36ed539461139f3eb1c2ca2905f8954a250265f (diff)
Put in the infrastructure for OpenBSD/arm gcc4 support. Not working, but work
on this in-tree not diffs floating around for > 1 year. ok miod@
Diffstat (limited to 'gnu/usr.bin/cc/cc_tools')
-rw-r--r--gnu/usr.bin/cc/cc_tools/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile
index 582dd22c11c..c6ed871158d 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.8 2010/09/10 16:20:11 kettenis Exp $
+# $OpenBSD: Makefile,v 1.9 2011/04/06 15:23:39 drahn Exp $
.include <bsd.own.mk>
@@ -45,6 +45,12 @@ TARGET_INC+= alpha/openbsd1.h
.else
TARGET_INC+= elfos.h
.endif
+.if ${TARGET_ARCH} == "arm"
+TARGET_INC+=arm/openbsd1.h
+TARGET_INC+=arm/elf.h
+TARGET_INC+=arm/aout.h
+TARGET_INC+=arm/arm.h
+.endif
.if ${TARGET_ARCH} == "sh"
TARGET_INC+= sh/elf.h
.endif