blob: cfd7d0c08b841879d2a0c51d0b00e4dd7bf6cb02 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
##===- unittests/Expr/Makefile -----------------------------*- Makefile -*-===##
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
LINK_COMPONENTS := support
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
ifeq ($(ENABLE_EXT_STP),1)
LIBS += -lstp
endif
|