Improve compatibility with older versions of Windows.
[llvm/msp430.git] / unittests / Makefile.unittest
blob1c75e44d0778ddf11e3f728268e532951716dc76
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 += -Wno-variadic-macros
23 LIBS += -lGoogleTest -lUnitTestMain
25 $(LLVMUnitTestExe): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
26         $(Echo) Linking $(BuildMode) unit test $(TESTNAME) $(StripWarnMsg)
27         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
28         $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
29         $(Echo) ======= Finished Linking $(BuildMode) Unit test $(TESTNAME) \
30           $(StripWarnMsg)
32 all:: $(LLVMUnitTestExe)
33         $(LLVMUnitTestExe)
35 endif