forked from OSchip/llvm-project
parent
55a719835d
commit
547b43a809
|
@ -0,0 +1,12 @@
|
|||
include_directories(
|
||||
${CMAKE_CURRENT_BINARY_DIR}/..
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/..
|
||||
)
|
||||
|
||||
add_partially_linked_object(LLVMIA64AsmPrinter
|
||||
IA64AsmPrinter.cpp
|
||||
)
|
||||
|
||||
target_name_of_partially_linked_object(LLVMIA64CodeGen n)
|
||||
|
||||
add_dependencies(LLVMIA64AsmPrinter ${n})
|
|
@ -0,0 +1,17 @@
|
|||
##===- lib/Target/CellSPU/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 = LLVMIA64AsmPrinter
|
||||
|
||||
# Hack: we need to include 'main' IA64 target directory to grab
|
||||
# private headers
|
||||
CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
##===----------------------------------------------------------------------===##
|
||||
LEVEL = ../../..
|
||||
LIBRARYNAME = LLVMIA64
|
||||
LIBRARYNAME = LLVMIA64CodeGen
|
||||
TARGET = IA64
|
||||
# Make sure that tblgen is run, first thing.
|
||||
BUILT_SOURCES = IA64GenRegisterInfo.h.inc IA64GenRegisterNames.inc \
|
||||
|
@ -14,5 +14,7 @@ BUILT_SOURCES = IA64GenRegisterInfo.h.inc IA64GenRegisterNames.inc \
|
|||
IA64GenInstrInfo.inc IA64GenAsmWriter.inc \
|
||||
IA64GenDAGISel.inc
|
||||
|
||||
DIRS = AsmPrinter
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
|
Loading…
Reference in New Issue