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.
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) \
32 all:: $(LLVMUnitTestExe)