aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/Makefile
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2008-08-17 13:53:59 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2008-08-17 13:53:59 +0000
commit3c3bc48d331db26aaff3ff4f7a61f60a17fea112 (patch)
tree7cbec58b1aa254700ddac87d52819a0751d5ab11 /lib/Target/X86/Makefile
parentabb247fc036d55d06b06853cae66ab055269d605 (diff)
downloadexternal_llvm-3c3bc48d331db26aaff3ff4f7a61f60a17fea112.zip
external_llvm-3c3bc48d331db26aaff3ff4f7a61f60a17fea112.tar.gz
external_llvm-3c3bc48d331db26aaff3ff4f7a61f60a17fea112.tar.bz2
Move X86 assembler printers into separate directory. This allows JIT-only users not to link it in (use 'x86codegen' llvm-config arg for this)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54886 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/Makefile')
-rw-r--r--lib/Target/X86/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Target/X86/Makefile b/lib/Target/X86/Makefile
index c6af978..cb3f0ac 100644
--- a/lib/Target/X86/Makefile
+++ b/lib/Target/X86/Makefile
@@ -7,7 +7,7 @@
#
##===----------------------------------------------------------------------===##
LEVEL = ../../..
-LIBRARYNAME = LLVMX86
+LIBRARYNAME = LLVMX86CodeGen
TARGET = X86
# Make sure that tblgen is run, first thing.
@@ -18,4 +18,6 @@ BUILT_SOURCES = X86GenRegisterInfo.h.inc X86GenRegisterNames.inc \
X86GenFastISel.inc \
X86GenCallingConv.inc X86GenSubtarget.inc
+DIRS = AsmPrinter
+
include $(LEVEL)/Makefile.common