mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 19:49:36 +00:00
75ef2f0b45
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
|