blob: 545d7fa78e8655e5390db5d71abd1626a6580a7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
##===- unittests/Makefile ----------------------------------*- Makefile -*-===##
LEVEL = ..
include $(LEVEL)/Makefile.config
LIBRARYNAME = UnitTestMain
BUILD_ARCHIVE = 1
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
CPP.Flags += -Wno-variadic-macros
# FIXME: Parallel dirs is broken?
DIRS = Expr Solver
include $(LEVEL)/Makefile.common
clean::
$(Verb) $(RM) -f *Tests
|