2 # Common makefile template for the dyninstAPI library. This file is not
3 # intended to be a useful Makefile in isolation; instead, it should be
4 # included from within an architecture-specific Makefile.
6 # $Id: make.module.tmpl,v 1.4 2008/09/15 17:38:17 jaw Exp $
12 #BUILD_MARK should be (re-)defined in core/make.config.local rather than here!
14 CFLAGS += $(USEFULWARNINGS) -I$(TO_CORE)/../include
15 CXXFLAGS += $(USEFULWARNINGS) -I$(TO_CORE)/../include
17 LDFLAGS += -L../../common/$(PLATFORM) -L../../symtabAPI/$(PLATFORM) -lcommon -lsymtabAPI
22 LDFLAGS += -shared $(G_PTHREAD_LD)
23 CXXFLAGS += $(G_PTHREAD)
25 ifeq (solaris,$(findstring solaris,$(PLATFORM)))
30 ifneq ($(findstring cap_instruction_api,$(CAP_DEF)),)
31 LDFLAGS += -L../../instructionAPI/$(PLATFORM) -linstructionAPI
48 SRCS += ../src/ParserDetails.C \
54 ../src/debug_parse.C \
55 ../src/SymtabCodeSource.C \
57 ../src/InstructionAdapter.C\
58 ../src/Parser-speculative.C\
59 ../src/ParseCallback.C \
60 ../src/IA_x86Details.C \
61 ../src/IA_powerDetails.C \
62 ../src/IA_platformDetailsFactory.C \
65 ifneq ($(findstring cap_instruction_api,$(CAP_DEF)),)
66 SRCS += ../../dataflowAPI/src/ABI.C \
67 ../../dataflowAPI/src/Absloc.C \
68 ../../dataflowAPI/src/AbslocInterface.C \
69 ../../dataflowAPI/src/convertOpcodes.C \
70 ../../dataflowAPI/src/debug_dataflow.C \
71 ../../dataflowAPI/src/ExpressionConversionVisitor.C \
72 ../../dataflowAPI/src/InstructionCache.C \
73 ../../dataflowAPI/src/liveness.C \
74 ../../dataflowAPI/src/RegisterMap.C \
75 ../../dataflowAPI/src/RoseImpl.C \
76 ../../dataflowAPI/src/RoseInsnFactory.C \
77 ../../dataflowAPI/src/slicing.C \
78 ../../dataflowAPI/src/stackanalysis.C \
79 ../../dataflowAPI/src/SymbolicExpansion.C \
80 ../../dataflowAPI/src/SymEval.C \
81 ../../dataflowAPI/src/SymEvalPolicy.C \
82 ../../dataflowAPI/src/templates.C \
83 ../../dataflowAPI/src/Visitors.C \
84 ../src/StackTamperVisitor.C
86 VPATH += ../../dataflowAPI/src
87 VPATH += ../../dataflowAPI/h
89 PUBLIC_H += Absloc.h \
100 IFLAGS += -I../$(PLATFORM) -I../src -I../../dataflowAPI/src -I../../dataflowAPI/h -I../h -I../../dynutil/h -I../../symtabAPI/h -I../../common/h -I../../instructionAPI/h