We only supported a very old version of OpenScop that was entirely different to what OpenScop is today. To not confuse people, we remove this old and unusable support. If anyone is interested to add OpenScop support back in, the relevant patches are available in version control. llvm-svn: 206026
81 lines
1.9 KiB
Makefile
81 lines
1.9 KiB
Makefile
##===- polly/lib/Makefile -----------------------*- Makefile -*-===##
|
|
|
|
#
|
|
# Indicate where we are relative to the top of the source tree.
|
|
#
|
|
LEVEL :=..
|
|
|
|
LIBRARYNAME=LLVMPolly
|
|
LOADABLE_MODULE = 1
|
|
|
|
# TODO: Export symbols for RTTI or EH?
|
|
|
|
CPP.Flags += $(POLLY_INC)
|
|
LD.Flags += $(POLLY_LD) $(POLLY_LIB)
|
|
|
|
LIBS += $(POLLY_LD) $(POLLY_LIB)
|
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
# Enable optional source files
|
|
ifeq ($(CLOOG_FOUND), yes)
|
|
CLOOG_FILES= CodeGen/Cloog.cpp \
|
|
CodeGen/CodeGeneration.cpp
|
|
endif
|
|
|
|
ifeq ($(GPU_CODEGEN), yes)
|
|
GPGPU_CODEGEN_FILES= CodeGen/PTXGenerator.cpp
|
|
endif
|
|
|
|
ifeq ($(PLUTO_FOUND), yes)
|
|
POLLY_PLUTO_FILES= Transform/Pluto.cpp
|
|
endif
|
|
|
|
ifeq ($(SCOPLIB_FOUND), yes)
|
|
POLLY_SCOPLIB_FILES= Exchange/ScopLib.cpp \
|
|
Exchange/ScopLibExporter.cpp \
|
|
Exchange/ScopLibImporter.cpp \
|
|
Transform/Pocc.cpp
|
|
endif
|
|
|
|
ISL_CODEGEN_FILES= CodeGen/IslAst.cpp \
|
|
CodeGen/IslCodeGeneration.cpp
|
|
|
|
POLLY_JSON_FILES= JSON/json_reader.cpp \
|
|
JSON/json_value.cpp \
|
|
JSON/json_writer.cpp
|
|
|
|
SOURCES= Polly.cpp \
|
|
Support/GICHelper.cpp \
|
|
Support/SCEVValidator.cpp \
|
|
Support/RegisterPasses.cpp \
|
|
Support/ScopHelper.cpp \
|
|
Analysis/Dependences.cpp \
|
|
Analysis/ScopDetection.cpp \
|
|
Analysis/ScopInfo.cpp \
|
|
Analysis/ScopGraphPrinter.cpp \
|
|
Analysis/ScopPass.cpp \
|
|
Analysis/TempScopInfo.cpp \
|
|
CodeGen/BlockGenerators.cpp \
|
|
CodeGen/LoopGenerators.cpp \
|
|
CodeGen/IRBuilder.cpp \
|
|
CodeGen/Utils.cpp \
|
|
Exchange/JSONExporter.cpp \
|
|
Transform/Canonicalization.cpp \
|
|
Transform/CodePreparation.cpp \
|
|
Transform/DeadCodeElimination.cpp \
|
|
Transform/IndependentBlocks.cpp \
|
|
Transform/IndVarSimplify.cpp \
|
|
Transform/ScheduleOptimizer.cpp \
|
|
${GPGPU_FILES} \
|
|
${ISL_CODEGEN_FILES} \
|
|
${CLOOG_FILES} \
|
|
${POLLY_JSON_FILES} \
|
|
${POLLY_PLUTO_FILES} \
|
|
${POLLY_SCOPLIB_FILES}
|
|
|
|
#
|
|
# Include Makefile.common so we know what to do.
|
|
#
|
|
include $(LEVEL)/Makefile.common
|