diff options
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/Expr/Makefile | 10 | ||||
-rw-r--r-- | unittests/Ref/Makefile | 9 | ||||
-rw-r--r-- | unittests/Solver/Makefile | 9 |
3 files changed, 4 insertions, 24 deletions
diff --git a/unittests/Expr/Makefile b/unittests/Expr/Makefile index cfd7d0c0..b5c6bdb3 100644 --- a/unittests/Expr/Makefile +++ b/unittests/Expr/Makefile @@ -4,16 +4,10 @@ LEVEL := ../.. include $(LEVEL)/Makefile.config TESTNAME := Expr -STP_LIBS := stp_c_interface.a stp_AST.a stp_bitvec.a \ - stp_constantbv.a stp_sat.a stp_simplifier.a USEDLIBS := kleaverExpr.a kleeBasic.a -ifeq ($(ENABLE_EXT_STP),0) - USEDLIBS += $(STP_LIBS) -endif +USEDLIBS += $(STP_LIBS) LINK_COMPONENTS := support include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest -ifeq ($(ENABLE_EXT_STP),1) - LIBS += -lstp -endif +LIBS += -lstp diff --git a/unittests/Ref/Makefile b/unittests/Ref/Makefile index 3117a5fd..94bbb83c 100644 --- a/unittests/Ref/Makefile +++ b/unittests/Ref/Makefile @@ -4,16 +4,9 @@ LEVEL := ../.. include $(LEVEL)/Makefile.config TESTNAME := RefTest -STP_LIBS := stp_c_interface.a stp_AST.a stp_bitvec.a \ - stp_constantbv.a stp_sat.a stp_simplifier.a USEDLIBS := kleaverExpr.a kleeBasic.a -ifeq ($(ENABLE_EXT_STP),0) - USEDLIBS += $(STP_LIBS) -endif LINK_COMPONENTS := support include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest -ifeq ($(ENABLE_EXT_STP),1) - LIBS += -lstp -endif +LIBS += -lstp diff --git a/unittests/Solver/Makefile b/unittests/Solver/Makefile index 86283d24..00713691 100644 --- a/unittests/Solver/Makefile +++ b/unittests/Solver/Makefile @@ -4,16 +4,9 @@ LEVEL := ../.. include $(LEVEL)/Makefile.config TESTNAME := Solver -STP_LIBS := stp_c_interface.a stp_AST.a stp_bitvec.a \ - stp_constantbv.a stp_sat.a stp_simplifier.a USEDLIBS := kleaverSolver.a kleaverExpr.a kleeSupport.a kleeBasic.a -ifeq ($(ENABLE_EXT_STP),0) - USEDLIBS += $(STP_LIBS) -endif LINK_COMPONENTS := support include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest -ifeq ($(ENABLE_EXT_STP),1) - LIBS += -lstp -endif +LIBS += -lstp |