Make target info available to clang code generator. This is far from complete but this helps clang codegen module make progress. At the moment target triplet and target description strings are hard coded in clang::TargetInfo llvm-svn: 43572
14 lines
375 B
Makefile
14 lines
375 B
Makefile
LEVEL = ../../..
|
|
CPPFLAGS += -I$(PROJ_SRC_DIR)/../include
|
|
CXXFLAGS = -fno-rtti
|
|
|
|
TOOLNAME = clang
|
|
USEDLIBS = clangCodeGen.a clangAnalysis.a clangRewrite.a clangSEMA.a \
|
|
clangAST.a clangParse.a clangLex.a clangBasic.a \
|
|
LLVMCore.a LLVMSupport.a LLVMSystem.a \
|
|
LLVMBitWriter.a LLVMBitReader.a LLVMTarget.a
|
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|