diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-09-07 18:14:24 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-09-07 18:14:24 +0000 |
commit | f7a3c50183726c5bbb02bb08d97e65f1066a249f (patch) | |
tree | 734531668d3d7acade4fbc7aab52529e2527cf69 /lib/Target/PTX/Makefile | |
parent | 86097c384f84981494ed9c200ff5763afcd960de (diff) | |
download | external_llvm-f7a3c50183726c5bbb02bb08d97e65f1066a249f.zip external_llvm-f7a3c50183726c5bbb02bb08d97e65f1066a249f.tar.gz external_llvm-f7a3c50183726c5bbb02bb08d97e65f1066a249f.tar.bz2 |
Create PTX backend. Patch by Che-Liang Chiou!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113235 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PTX/Makefile')
-rw-r--r-- | lib/Target/PTX/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/Target/PTX/Makefile b/lib/Target/PTX/Makefile new file mode 100644 index 0000000..fcbf931 --- /dev/null +++ b/lib/Target/PTX/Makefile @@ -0,0 +1,19 @@ +##===- lib/Target/PTX/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 = LLVMPTXCodeGen +TARGET = PTX + +# Make sure that tblgen is run, first thing. +BUILT_SOURCES = + +DIRS = AsmPrinter TargetInfo + +include $(LEVEL)/Makefile.common |