mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-02 09:33:59 +00:00
9578d793c9
This change adds XCoreMCInstLower to do the lowering to MCInst and XCoreInstPrinter to print the MCInsts. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170288 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
705 B
Makefile
24 lines
705 B
Makefile
##===- lib/Target/XCore/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 = LLVMXCoreCodeGen
|
|
TARGET = XCore
|
|
|
|
# Make sure that tblgen is run, first thing.
|
|
BUILT_SOURCES = XCoreGenRegisterInfo.inc XCoreGenInstrInfo.inc \
|
|
XCoreGenAsmWriter.inc \
|
|
XCoreGenDAGISel.inc XCoreGenCallingConv.inc \
|
|
XCoreGenSubtargetInfo.inc
|
|
|
|
DIRS = InstPrinter TargetInfo MCTargetDesc
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|