mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2024-11-17 01:10:11 +00:00
23 lines
703 B
Makefile
23 lines
703 B
Makefile
##===- lib/Target/WDC65816/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 = LLVMWDC65816CodeGen
|
|
TARGET = WDC65816
|
|
|
|
# Make sure that tblgen is run, first thing.
|
|
BUILT_SOURCES = WDC65816GenRegisterInfo.inc WDC65816GenInstrInfo.inc \
|
|
WDC65816GenAsmWriter.inc WDC65816GenDAGISel.inc \
|
|
WDC65816GenSubtargetInfo.inc WDC65816GenCallingConv.inc
|
|
|
|
DIRS = TargetInfo MCTargetDesc
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|