Change errs() to dbgs().
[llvm-core.git] / unittests / Makefile.unittest
blobe4174355ed7520393cfb881ed0de4d32db3d632e
1 ##===- unittests/Makefile.unittest -------------------------*- Makefile -*-===##
3 #                     The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 ##===----------------------------------------------------------------------===##
10 # This file is included by all of the unit test makefiles.
12 ##===----------------------------------------------------------------------===##
14 # Set up variables for building a unit test.
15 ifdef TESTNAME
17 include $(LEVEL)/Makefile.common
19 LLVMUnitTestExe = $(BuildMode)/$(TESTNAME)Tests$(EXEEXT)
21 CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
22 CPP.Flags += $(NO_VARIADIC_MACROS)
23 TESTLIBS = -lGoogleTest -lUnitTestMain
25 $(LLVMUnitTestExe): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
26         $(Echo) Linking $(BuildMode) unit test $(TESTNAME) $(StripWarnMsg)
27         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
28         $(TESTLIBS) $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
29         $(Echo) ======= Finished Linking $(BuildMode) Unit test $(TESTNAME) \
30           $(StripWarnMsg)
32 all:: $(LLVMUnitTestExe)
34 unitcheck:: $(LLVMUnitTestExe)
35         $(LLVMUnitTestExe)
37 endif