mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
ac1a45e511
Reviewers: arsenm Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D10757 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240831 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
820 B
Makefile
24 lines
820 B
Makefile
##===- lib/Target/R600/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 = LLVMAMDGPUCodeGen
|
|
TARGET = AMDGPU
|
|
|
|
# Make sure that tblgen is run, first thing.
|
|
BUILT_SOURCES = AMDGPUGenRegisterInfo.inc AMDGPUGenInstrInfo.inc \
|
|
AMDGPUGenDAGISel.inc AMDGPUGenSubtargetInfo.inc \
|
|
AMDGPUGenMCCodeEmitter.inc AMDGPUGenCallingConv.inc \
|
|
AMDGPUGenIntrinsics.inc AMDGPUGenDFAPacketizer.inc \
|
|
AMDGPUGenAsmWriter.inc AMDGPUGenAsmMatcher.inc
|
|
|
|
DIRS = AsmParser InstPrinter TargetInfo MCTargetDesc Utils
|
|
|
|
include $(LEVEL)/Makefile.common
|