diff options
author | Chris Lattner <sabre@nondot.org> | 2010-07-20 18:29:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-07-20 18:29:50 +0000 |
commit | 3a1472182972d9fb0c2d1b908b9881cc4a708f8d (patch) | |
tree | 4b0e6548542e9ae6662a5dfaf16865ef123a9e5d /llvm/lib/MC/MCDisassembler | |
parent | 979634bbb0321d69603bcfde10693f57b466ecd8 (diff) | |
download | bcm5719-llvm-3a1472182972d9fb0c2d1b908b9881cc4a708f8d.tar.gz bcm5719-llvm-3a1472182972d9fb0c2d1b908b9881cc4a708f8d.zip |
forgot to add a file
llvm-svn: 108870
Diffstat (limited to 'llvm/lib/MC/MCDisassembler')
-rw-r--r-- | llvm/lib/MC/MCDisassembler/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCDisassembler/Makefile b/llvm/lib/MC/MCDisassembler/Makefile new file mode 100644 index 00000000000..e235f2df698 --- /dev/null +++ b/llvm/lib/MC/MCDisassembler/Makefile @@ -0,0 +1,21 @@ +##===- lib/MC/MCDisassembler/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 = LLVMMCDisassembler +BUILT_SOURCES = EDInfo.inc + +include $(LEVEL)/Makefile.common + +EDInfo.inc: $(TBLGEN) + $(Echo) "Building semantic information header" + $(Verb) $(TableGen) -o $(call SYSPATH, $@) -gen-enhanced-disassembly-header /dev/null + +clean:: + -$(Verb) $(RM) -f EDInfo.inc |