mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
8699f5390b
Modified library structure to deal with circular dependency between HexagonInstPrinter and HexagonMCInst. Adding encoding bits for add opcode. Adding llvm-mc tests. Removing unit tests. http://reviews.llvm.org/D5624 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220584 91177308-0d34-0410-b5e6-96231b3b80d8
27 lines
928 B
Makefile
27 lines
928 B
Makefile
##===- lib/Target/Hexagon/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 = LLVMHexagonCodeGen
|
|
TARGET = Hexagon
|
|
|
|
# Make sure that tblgen is run, first thing.
|
|
BUILT_SOURCES = HexagonGenRegisterInfo.inc \
|
|
HexagonGenInstrInfo.inc \
|
|
HexagonGenAsmWriter.inc \
|
|
HexagonGenDAGISel.inc \
|
|
HexagonGenSubtargetInfo.inc \
|
|
HexagonGenCallingConv.inc \
|
|
HexagonGenDFAPacketizer.inc \
|
|
HexagonGenMCCodeEmitter.inc \
|
|
HexagonGenDisassemblerTables.inc
|
|
|
|
DIRS = TargetInfo MCTargetDesc Disassembler
|
|
|
|
include $(LEVEL)/Makefile.common
|