diff options
| author | Jim Grosbach <grosbach@apple.com> | 2010-10-01 22:39:28 +0000 |
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2010-10-01 22:39:28 +0000 |
| commit | 3ec104aa69da2d9677e2268e8b4ac2a4d882a0ba (patch) | |
| tree | 41cba4e9be873c1d0cd0d77a24d37531a725fbff /lib/Target/X86/InstPrinter/Makefile | |
| parent | 2af2a5f6e191c62c46a98201afd14ad116781836 (diff) | |
| download | external_llvm-3ec104aa69da2d9677e2268e8b4ac2a4d882a0ba.zip external_llvm-3ec104aa69da2d9677e2268e8b4ac2a4d882a0ba.tar.gz external_llvm-3ec104aa69da2d9677e2268e8b4ac2a4d882a0ba.tar.bz2 | |
Rename the AsmPrinter directory to InstPrinter for those targets that have
been MC-ized for assembly printing. MSP430 is mostly so, but still has the
asm printer and lowering code in the printer subdir for the moment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115360 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/InstPrinter/Makefile')
| -rw-r--r-- | lib/Target/X86/InstPrinter/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Target/X86/InstPrinter/Makefile b/lib/Target/X86/InstPrinter/Makefile new file mode 100644 index 0000000..c82aa33 --- /dev/null +++ b/lib/Target/X86/InstPrinter/Makefile @@ -0,0 +1,15 @@ +##===- lib/Target/X86/AsmPrinter/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 = LLVMX86AsmPrinter + +# Hack: we need to include 'main' x86 target directory to grab private headers +CPP.Flags += -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/.. + +include $(LEVEL)/Makefile.common |
