diff options
author | Richard Osborne <richard@xmos.com> | 2008-11-05 09:53:58 +0000 |
---|---|---|
committer | Richard Osborne <richard@xmos.com> | 2008-11-05 09:53:58 +0000 |
commit | 644a509c59131e5109dcc2183788e6d5f0649b28 (patch) | |
tree | 956735686e0d149fff24b36644b555729ee75629 /lib/Target | |
parent | 54a71130f1da5f0a73d1f2f118e566efcd97ff2e (diff) | |
download | external_llvm-644a509c59131e5109dcc2183788e6d5f0649b28.zip external_llvm-644a509c59131e5109dcc2183788e6d5f0649b28.tar.gz external_llvm-644a509c59131e5109dcc2183788e6d5f0649b28.tar.bz2 |
Test commit, add Makefile for XCore target, more to follow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58755 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/XCore/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/Target/XCore/Makefile b/lib/Target/XCore/Makefile new file mode 100644 index 0000000..1b4fbd9 --- /dev/null +++ b/lib/Target/XCore/Makefile @@ -0,0 +1,21 @@ +##===- lib/Target/XCore/Makefile ---------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## +LEVEL = ../../.. +LIBRARYNAME = LLVMXCore +TARGET = XCore + +# Make sure that tblgen is run, first thing. +BUILT_SOURCES = XCoreGenRegisterInfo.h.inc XCoreGenRegisterNames.inc \ + XCoreGenRegisterInfo.inc XCoreGenInstrNames.inc \ + XCoreGenInstrInfo.inc XCoreGenAsmWriter.inc \ + XCoreGenDAGISel.inc XCoreGenCallingConv.inc \ + XCoreGenSubtarget.inc + +include $(LEVEL)/Makefile.common + |