diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-10-01 22:57:18 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-10-01 22:57:18 +0000 |
commit | 7722980950cede2f54150f171a3c01bb3f1089bf (patch) | |
tree | 0139e360fc6359648fac5bc8002c9439d6c03d0d /lib/Target/MSP430/InstPrinter/Makefile | |
parent | 055028215d53759a46fcc61fe95cda4a4bdf3a35 (diff) | |
download | external_llvm-7722980950cede2f54150f171a3c01bb3f1089bf.zip external_llvm-7722980950cede2f54150f171a3c01bb3f1089bf.tar.gz external_llvm-7722980950cede2f54150f171a3c01bb3f1089bf.tar.bz2 |
Now that the asmprinter itself isn't in the subdir, rename 'AsmPrinter' to
'InstPrinter' to fall into line with the other MC-ized assembly printer
using targets.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MSP430/InstPrinter/Makefile')
-rw-r--r-- | lib/Target/MSP430/InstPrinter/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Target/MSP430/InstPrinter/Makefile b/lib/Target/MSP430/InstPrinter/Makefile new file mode 100644 index 0000000..a5293ab --- /dev/null +++ b/lib/Target/MSP430/InstPrinter/Makefile @@ -0,0 +1,15 @@ +##===- lib/Target/MSP430/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 = LLVMMSP430AsmPrinter + +# Hack: we need to include 'main' MSP430 target directory to grab private headers +CPP.Flags += -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/.. + +include $(LEVEL)/Makefile.common |