aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/InstPrinter/Makefile
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-10-01 22:39:28 +0000
committerJim Grosbach <grosbach@apple.com>2010-10-01 22:39:28 +0000
commit3ec104aa69da2d9677e2268e8b4ac2a4d882a0ba (patch)
tree41cba4e9be873c1d0cd0d77a24d37531a725fbff /lib/Target/ARM/InstPrinter/Makefile
parent2af2a5f6e191c62c46a98201afd14ad116781836 (diff)
downloadexternal_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/ARM/InstPrinter/Makefile')
-rw-r--r--lib/Target/ARM/InstPrinter/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Target/ARM/InstPrinter/Makefile b/lib/Target/ARM/InstPrinter/Makefile
new file mode 100644
index 0000000..65d372e
--- /dev/null
+++ b/lib/Target/ARM/InstPrinter/Makefile
@@ -0,0 +1,15 @@
+##===- lib/Target/ARM/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 = LLVMARMAsmPrinter
+
+# Hack: we need to include 'main' arm target directory to grab private headers
+CPP.Flags += -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
+
+include $(LEVEL)/Makefile.common