2010-12-12 09:46:59 +01:00
|
|
|
# This file is generated by tools/dmake, do not edit.
|
|
|
|
|
2011-10-17 20:18:36 +02:00
|
|
|
# To compile with rules, use 'make HAVE_RULES=yes'
|
2011-08-19 00:28:31 +02:00
|
|
|
ifndef HAVE_RULES
|
2011-10-17 20:18:36 +02:00
|
|
|
HAVE_RULES=no
|
2011-08-19 00:28:31 +02:00
|
|
|
endif
|
2011-04-19 20:53:40 +02:00
|
|
|
|
2012-12-02 12:36:55 +01:00
|
|
|
# folder where lib/*.cpp files are located
|
2012-12-10 09:43:07 +01:00
|
|
|
ifndef SRCDIR
|
|
|
|
SRCDIR=lib
|
2012-12-02 12:36:55 +01:00
|
|
|
endif
|
|
|
|
|
2012-12-10 09:43:07 +01:00
|
|
|
ifeq ($(SRCDIR),build)
|
2013-05-15 13:04:19 +02:00
|
|
|
ifdef VERIFY
|
|
|
|
matchcompiler_S := $(shell python tools/matchcompiler.py --verify)
|
|
|
|
else
|
|
|
|
matchcompiler_S := $(shell python tools/matchcompiler.py)
|
|
|
|
endif
|
2012-12-02 12:36:55 +01:00
|
|
|
endif
|
|
|
|
|
2013-12-28 12:15:08 +01:00
|
|
|
ifdef CFGDIR
|
|
|
|
CFG=-DCFGDIR=\"$(CFGDIR)\"
|
|
|
|
else
|
|
|
|
CFG=
|
|
|
|
endif
|
|
|
|
|
2014-03-30 20:50:03 +02:00
|
|
|
RDYNAMIC=-rdynamic
|
2012-02-12 03:30:58 +01:00
|
|
|
# Set the CPPCHK_GLIBCXX_DEBUG flag. This flag is not used in release Makefiles.
|
2012-02-17 20:12:41 +01:00
|
|
|
# The _GLIBCXX_DEBUG define doesn't work in Cygwin or other Win32 systems.
|
2012-02-11 08:27:10 +01:00
|
|
|
ifndef COMSPEC
|
|
|
|
ifdef ComSpec
|
|
|
|
#### ComSpec is defined on some WIN32's.
|
|
|
|
COMSPEC=$(ComSpec)
|
|
|
|
endif # ComSpec
|
|
|
|
endif # COMSPEC
|
|
|
|
|
|
|
|
ifdef COMSPEC
|
|
|
|
#### Maybe Windows
|
|
|
|
ifndef CPPCHK_GLIBCXX_DEBUG
|
|
|
|
CPPCHK_GLIBCXX_DEBUG=
|
|
|
|
endif # !CPPCHK_GLIBCXX_DEBUG
|
2013-02-08 11:32:06 +01:00
|
|
|
|
|
|
|
ifeq ($(MSYSTEM),MINGW32)
|
|
|
|
LDFLAGS=-lshlwapi
|
2014-03-30 20:50:03 +02:00
|
|
|
else
|
|
|
|
RDYNAMIC=-lshlwapi
|
2013-02-08 11:32:06 +01:00
|
|
|
endif
|
2012-02-11 08:27:10 +01:00
|
|
|
else # !COMSPEC
|
|
|
|
uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
|
|
|
|
|
|
|
|
ifeq ($(uname_S),Linux)
|
|
|
|
ifndef CPPCHK_GLIBCXX_DEBUG
|
|
|
|
CPPCHK_GLIBCXX_DEBUG=-D_GLIBCXX_DEBUG
|
|
|
|
endif # !CPPCHK_GLIBCXX_DEBUG
|
|
|
|
endif # Linux
|
|
|
|
|
|
|
|
ifeq ($(uname_S),GNU/kFreeBSD)
|
|
|
|
ifndef CPPCHK_GLIBCXX_DEBUG
|
|
|
|
CPPCHK_GLIBCXX_DEBUG=-D_GLIBCXX_DEBUG
|
|
|
|
endif # !CPPCHK_GLIBCXX_DEBUG
|
|
|
|
endif # GNU/kFreeBSD
|
|
|
|
|
|
|
|
endif # COMSPEC
|
|
|
|
|
2014-04-24 22:22:43 +02:00
|
|
|
# Set the UNDEF_STRICT_ANSI flag to address compile time warnings
|
|
|
|
# with tinyxml2 and Cygwin.
|
|
|
|
ifdef COMSPEC
|
|
|
|
uname_S := $(shell uname -s)
|
|
|
|
|
|
|
|
ifneq (,$(findstring CYGWIN,$(uname_S)))
|
|
|
|
UNDEF_STRICT_ANSI=-U__STRICT_ANSI__
|
|
|
|
endif # CYGWIN
|
|
|
|
endif # COMSPEC
|
|
|
|
|
2015-10-05 04:51:06 +02:00
|
|
|
ifndef CXX
|
|
|
|
CXX=g++
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CXX), clang++)
|
|
|
|
CPPCHK_GLIBCXX_DEBUG=
|
|
|
|
endif
|
2010-09-20 13:21:33 +02:00
|
|
|
ifndef CXXFLAGS
|
2016-12-31 19:03:52 +01:00
|
|
|
CXXFLAGS=-include lib/cxx11emu.h -pedantic -Wall -Wextra -Wabi -Wcast-qual -Wfloat-equal -Wmissing-declarations -Wmissing-format-attribute -Wno-long-long -Wpacked -Wredundant-decls -Wshadow -Wno-missing-field-initializers -Wno-missing-braces -Wno-sign-compare -Wno-multichar $(CPPCHK_GLIBCXX_DEBUG) -g
|
2015-11-10 21:07:06 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CXX), g++)
|
|
|
|
override CXXFLAGS += -std=c++0x
|
|
|
|
else ifeq ($(CXX), clang++)
|
|
|
|
override CXXFLAGS += -std=c++0x
|
2015-11-14 07:53:34 +01:00
|
|
|
else ifeq ($(CXX), c++)
|
|
|
|
ifeq ($(shell uname -s), Darwin)
|
|
|
|
override CXXFLAGS += -std=c++0x
|
|
|
|
endif
|
2011-04-19 20:53:40 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(HAVE_RULES),yes)
|
2015-11-13 11:38:06 +01:00
|
|
|
override CXXFLAGS += -DHAVE_RULES -DTIXML_USE_STL $(shell pcre-config --cflags)
|
2011-06-19 19:56:12 +02:00
|
|
|
ifdef LIBS
|
2011-10-28 21:20:19 +02:00
|
|
|
LIBS += $(shell pcre-config --libs)
|
2011-04-22 01:07:49 +02:00
|
|
|
else
|
2011-10-28 21:20:19 +02:00
|
|
|
LIBS=$(shell pcre-config --libs)
|
2011-04-19 20:53:40 +02:00
|
|
|
endif
|
2010-09-20 13:21:33 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef PREFIX
|
|
|
|
PREFIX=/usr
|
|
|
|
endif
|
|
|
|
|
2011-02-10 21:35:48 +01:00
|
|
|
ifndef INCLUDE_FOR_LIB
|
2016-07-20 12:21:00 +02:00
|
|
|
INCLUDE_FOR_LIB=-Ilib -Iexternals/simplecpp -Iexternals/tinyxml
|
2011-02-10 21:35:48 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef INCLUDE_FOR_CLI
|
2016-07-20 12:21:00 +02:00
|
|
|
INCLUDE_FOR_CLI=-Ilib -Iexternals/simplecpp -Iexternals/tinyxml
|
2011-02-10 21:35:48 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef INCLUDE_FOR_TEST
|
2016-07-20 12:21:00 +02:00
|
|
|
INCLUDE_FOR_TEST=-Ilib -Icli -Iexternals/simplecpp -Iexternals/tinyxml
|
2011-02-10 21:35:48 +01:00
|
|
|
endif
|
|
|
|
|
2010-09-20 13:21:33 +02:00
|
|
|
BIN=$(DESTDIR)$(PREFIX)/bin
|
|
|
|
|
|
|
|
# For 'make man': sudo apt-get install xsltproc docbook-xsl docbook-xml on Linux
|
2015-08-17 17:32:56 +02:00
|
|
|
DB2MAN?=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl
|
2010-02-23 18:38:18 +01:00
|
|
|
XP=xsltproc -''-nonet -''-param man.charmap.use.subset "0"
|
|
|
|
MAN_SOURCE=man/cppcheck.1.xml
|
|
|
|
|
|
|
|
|
|
|
|
###### Object Files
|
|
|
|
|
2016-10-29 12:18:11 +02:00
|
|
|
LIBOBJ = $(SRCDIR)/analyzerinfo.o \
|
|
|
|
$(SRCDIR)/astutils.o \
|
2015-08-02 21:57:32 +02:00
|
|
|
$(SRCDIR)/check.o \
|
2014-05-24 12:54:16 +02:00
|
|
|
$(SRCDIR)/check64bit.o \
|
2013-05-07 21:35:16 +02:00
|
|
|
$(SRCDIR)/checkassert.o \
|
2012-12-10 09:43:07 +01:00
|
|
|
$(SRCDIR)/checkautovariables.o \
|
2013-05-05 09:22:04 +02:00
|
|
|
$(SRCDIR)/checkbool.o \
|
2012-12-10 09:43:07 +01:00
|
|
|
$(SRCDIR)/checkboost.o \
|
|
|
|
$(SRCDIR)/checkbufferoverrun.o \
|
|
|
|
$(SRCDIR)/checkclass.o \
|
2014-08-29 18:32:50 +02:00
|
|
|
$(SRCDIR)/checkcondition.o \
|
2012-12-10 09:43:07 +01:00
|
|
|
$(SRCDIR)/checkexceptionsafety.o \
|
2015-11-22 10:40:48 +01:00
|
|
|
$(SRCDIR)/checkfunctions.o \
|
2012-12-10 09:43:07 +01:00
|
|
|
$(SRCDIR)/checkinternal.o \
|
|
|
|
$(SRCDIR)/checkio.o \
|
|
|
|
$(SRCDIR)/checkleakautovar.o \
|
|
|
|
$(SRCDIR)/checkmemoryleak.o \
|
|
|
|
$(SRCDIR)/checknullpointer.o \
|
|
|
|
$(SRCDIR)/checkother.o \
|
|
|
|
$(SRCDIR)/checkpostfixoperator.o \
|
2013-05-05 09:22:04 +02:00
|
|
|
$(SRCDIR)/checksizeof.o \
|
2012-12-10 09:43:07 +01:00
|
|
|
$(SRCDIR)/checkstl.o \
|
2014-08-27 09:45:50 +02:00
|
|
|
$(SRCDIR)/checkstring.o \
|
2014-09-11 18:10:19 +02:00
|
|
|
$(SRCDIR)/checktype.o \
|
2012-12-10 09:43:07 +01:00
|
|
|
$(SRCDIR)/checkuninitvar.o \
|
|
|
|
$(SRCDIR)/checkunusedfunctions.o \
|
|
|
|
$(SRCDIR)/checkunusedvar.o \
|
2014-08-06 14:25:49 +02:00
|
|
|
$(SRCDIR)/checkvaarg.o \
|
2012-12-10 09:43:07 +01:00
|
|
|
$(SRCDIR)/cppcheck.o \
|
|
|
|
$(SRCDIR)/errorlogger.o \
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/importproject.o \
|
2013-07-08 18:26:18 +02:00
|
|
|
$(SRCDIR)/library.o \
|
2012-12-10 09:43:07 +01:00
|
|
|
$(SRCDIR)/mathlib.o \
|
|
|
|
$(SRCDIR)/path.o \
|
2016-10-02 12:38:44 +02:00
|
|
|
$(SRCDIR)/pathmatch.o \
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/platform.o \
|
2012-12-10 09:43:07 +01:00
|
|
|
$(SRCDIR)/preprocessor.o \
|
|
|
|
$(SRCDIR)/settings.o \
|
|
|
|
$(SRCDIR)/suppressions.o \
|
|
|
|
$(SRCDIR)/symboldatabase.o \
|
|
|
|
$(SRCDIR)/templatesimplifier.o \
|
|
|
|
$(SRCDIR)/timer.o \
|
|
|
|
$(SRCDIR)/token.o \
|
|
|
|
$(SRCDIR)/tokenize.o \
|
2014-01-04 20:57:02 +01:00
|
|
|
$(SRCDIR)/tokenlist.o \
|
|
|
|
$(SRCDIR)/valueflow.o
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-07-20 12:21:00 +02:00
|
|
|
EXTOBJ = externals/simplecpp/simplecpp.o \
|
|
|
|
externals/tinyxml/tinyxml2.o
|
|
|
|
|
2011-01-31 08:18:35 +01:00
|
|
|
CLIOBJ = cli/cmdlineparser.o \
|
2010-09-05 10:47:31 +02:00
|
|
|
cli/cppcheckexecutor.o \
|
2011-01-18 18:37:15 +01:00
|
|
|
cli/filelister.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
cli/main.o \
|
|
|
|
cli/threadexecutor.o
|
|
|
|
|
2010-09-26 05:29:23 +02:00
|
|
|
TESTOBJ = test/options.o \
|
2011-07-06 08:55:17 +02:00
|
|
|
test/test64bit.o \
|
2013-05-07 21:35:16 +02:00
|
|
|
test/testassert.o \
|
2016-01-16 19:08:51 +01:00
|
|
|
test/testastutils.o \
|
2010-09-26 05:29:23 +02:00
|
|
|
test/testautovariables.o \
|
2013-05-05 09:22:04 +02:00
|
|
|
test/testbool.o \
|
2011-10-23 13:07:43 +02:00
|
|
|
test/testboost.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/testbufferoverrun.o \
|
|
|
|
test/testcharvar.o \
|
|
|
|
test/testclass.o \
|
2010-09-06 21:45:29 +02:00
|
|
|
test/testcmdlineparser.o \
|
2014-08-29 18:32:50 +02:00
|
|
|
test/testcondition.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/testconstructors.o \
|
|
|
|
test/testcppcheck.o \
|
2010-12-05 22:06:36 +01:00
|
|
|
test/testerrorlogger.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/testexceptionsafety.o \
|
2011-04-07 17:36:42 +02:00
|
|
|
test/testfilelister.o \
|
2015-11-22 10:40:48 +01:00
|
|
|
test/testfunctions.o \
|
2014-09-24 13:50:57 +02:00
|
|
|
test/testgarbage.o \
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testimportproject.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/testincompletestatement.o \
|
2011-10-28 22:39:46 +02:00
|
|
|
test/testinternal.o \
|
2012-05-20 22:19:10 +02:00
|
|
|
test/testio.o \
|
2012-05-26 08:53:46 +02:00
|
|
|
test/testleakautovar.o \
|
2013-10-27 17:10:43 +01:00
|
|
|
test/testlibrary.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/testmathlib.o \
|
|
|
|
test/testmemleak.o \
|
2010-10-31 11:51:25 +01:00
|
|
|
test/testnullpointer.o \
|
2010-09-26 05:29:23 +02:00
|
|
|
test/testoptions.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/testother.o \
|
2010-10-29 22:11:41 +02:00
|
|
|
test/testpath.o \
|
2011-02-01 12:34:05 +01:00
|
|
|
test/testpathmatch.o \
|
2010-10-16 23:57:25 +02:00
|
|
|
test/testpostfixoperator.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/testpreprocessor.o \
|
|
|
|
test/testrunner.o \
|
2014-03-28 12:00:51 +01:00
|
|
|
test/testsamples.o \
|
2014-09-24 13:50:57 +02:00
|
|
|
test/testsimplifytemplate.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/testsimplifytokens.o \
|
2014-09-24 13:50:57 +02:00
|
|
|
test/testsimplifytypedef.o \
|
2013-05-05 09:22:04 +02:00
|
|
|
test/testsizeof.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/teststl.o \
|
2014-08-27 09:45:50 +02:00
|
|
|
test/teststring.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/testsuite.o \
|
2011-05-03 12:18:05 +02:00
|
|
|
test/testsuppressions.o \
|
2010-12-30 09:46:44 +01:00
|
|
|
test/testsymboldatabase.o \
|
2010-06-14 22:18:09 +02:00
|
|
|
test/testthreadexecutor.o \
|
2012-09-15 19:49:48 +02:00
|
|
|
test/testtimer.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/testtoken.o \
|
|
|
|
test/testtokenize.o \
|
2015-06-13 18:08:13 +02:00
|
|
|
test/testtokenlist.o \
|
2014-09-11 18:10:19 +02:00
|
|
|
test/testtype.o \
|
2010-10-31 12:31:11 +01:00
|
|
|
test/testuninitvar.o \
|
2010-02-23 18:38:18 +01:00
|
|
|
test/testunusedfunctions.o \
|
|
|
|
test/testunusedprivfunc.o \
|
2014-01-04 20:57:02 +01:00
|
|
|
test/testunusedvar.o \
|
2014-08-06 14:25:49 +02:00
|
|
|
test/testvaarg.o \
|
2014-09-24 13:50:57 +02:00
|
|
|
test/testvalueflow.o \
|
|
|
|
test/testvarid.o
|
2010-12-12 11:56:22 +01:00
|
|
|
|
2015-09-05 17:12:15 +02:00
|
|
|
.PHONY: run-dmake
|
2014-03-31 13:56:07 +02:00
|
|
|
|
2011-02-09 00:06:51 +01:00
|
|
|
|
2010-02-23 18:38:18 +01:00
|
|
|
###### Targets
|
|
|
|
|
2011-01-31 08:18:35 +01:00
|
|
|
cppcheck: $(LIBOBJ) $(CLIOBJ) $(EXTOBJ)
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o cppcheck $(CLIOBJ) $(LIBOBJ) $(EXTOBJ) $(LIBS) $(LDFLAGS) $(RDYNAMIC)
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2011-01-31 08:18:35 +01:00
|
|
|
all: cppcheck testrunner
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-10-02 13:32:39 +02:00
|
|
|
testrunner: $(TESTOBJ) $(LIBOBJ) $(EXTOBJ) cli/threadexecutor.o cli/cmdlineparser.o cli/cppcheckexecutor.o cli/filelister.o
|
|
|
|
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o testrunner $(TESTOBJ) $(LIBOBJ) cli/threadexecutor.o cli/cppcheckexecutor.o cli/cmdlineparser.o cli/filelister.o $(EXTOBJ) $(LIBS) $(LDFLAGS) $(RDYNAMIC)
|
2010-02-23 18:38:18 +01:00
|
|
|
|
|
|
|
test: all
|
|
|
|
./testrunner
|
|
|
|
|
2010-09-26 05:29:23 +02:00
|
|
|
check: all
|
|
|
|
./testrunner -g -q
|
|
|
|
|
2015-01-27 19:31:41 +01:00
|
|
|
checkcfg: cppcheck
|
|
|
|
./test/cfg/runtests.sh
|
|
|
|
|
2016-10-02 13:15:51 +02:00
|
|
|
dmake: tools/dmake.o cli/filelister.o lib/pathmatch.o lib/path.o
|
|
|
|
$(CXX) $(CXXFLAGS) -o dmake tools/dmake.o cli/filelister.o lib/pathmatch.o lib/path.o -Ilib $(LDFLAGS)
|
2015-09-05 17:12:15 +02:00
|
|
|
|
|
|
|
run-dmake: dmake
|
2014-03-31 13:56:07 +02:00
|
|
|
./dmake
|
2010-07-27 15:25:03 +02:00
|
|
|
|
2016-07-20 12:21:00 +02:00
|
|
|
reduce: tools/reduce.o $(LIBOBJ) $(EXTOBJ)
|
|
|
|
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -g -o reduce tools/reduce.o $(INCLUDE_FOR_LIB) $(LIBOBJ) $(LIBS) $(EXTOBJ) $(LDFLAGS) $(RDYNAMIC)
|
2013-01-02 13:30:06 +01:00
|
|
|
|
2010-02-23 18:38:18 +01:00
|
|
|
clean:
|
2016-07-20 12:21:00 +02:00
|
|
|
rm -f build/*.o lib/*.o cli/*.o test/*.o tools/*.o externals/*/*.o testrunner reduce dmake cppcheck cppcheck.1
|
2010-09-22 20:25:27 +02:00
|
|
|
|
|
|
|
man: man/cppcheck.1
|
|
|
|
|
|
|
|
man/cppcheck.1: $(MAN_SOURCE)
|
2010-02-23 18:38:18 +01:00
|
|
|
|
|
|
|
$(XP) $(DB2MAN) $(MAN_SOURCE)
|
|
|
|
|
2010-10-12 14:04:06 +02:00
|
|
|
tags:
|
2015-11-15 19:03:18 +01:00
|
|
|
ctags -R --exclude=doxyoutput --exclude=test/cfg cli externals gui lib test
|
2010-10-12 14:04:06 +02:00
|
|
|
|
2011-01-31 08:18:35 +01:00
|
|
|
install: cppcheck
|
2010-02-23 18:38:18 +01:00
|
|
|
install -d ${BIN}
|
|
|
|
install cppcheck ${BIN}
|
2015-12-07 19:54:41 +01:00
|
|
|
install addons/*.py ${BIN}
|
|
|
|
install addons/*/*.py ${BIN}
|
2013-10-07 21:36:34 +02:00
|
|
|
install htmlreport/cppcheck-htmlreport ${BIN}
|
2014-05-17 11:05:42 +02:00
|
|
|
ifdef CFGDIR
|
2014-09-25 18:50:48 +02:00
|
|
|
install -d ${DESTDIR}${CFGDIR}
|
|
|
|
install -m 644 cfg/* ${DESTDIR}${CFGDIR}
|
2014-05-17 11:05:42 +02:00
|
|
|
endif
|
2010-02-23 18:38:18 +01:00
|
|
|
|
|
|
|
|
|
|
|
###### Build
|
|
|
|
|
2016-12-08 23:39:29 +01:00
|
|
|
$(SRCDIR)/analyzerinfo.o: lib/analyzerinfo.cpp lib/cxx11emu.h lib/analyzerinfo.h lib/config.h lib/errorlogger.h lib/suppressions.h lib/importproject.h lib/platform.h lib/path.h
|
2016-10-29 12:18:11 +02:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/analyzerinfo.o $(SRCDIR)/analyzerinfo.cpp
|
|
|
|
|
2016-10-23 13:54:44 +02:00
|
|
|
$(SRCDIR)/astutils.o: lib/astutils.cpp lib/cxx11emu.h lib/astutils.h lib/settings.h lib/config.h lib/library.h lib/mathlib.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/token.h lib/valueflow.h lib/tokenize.h lib/tokenlist.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/astutils.o $(SRCDIR)/astutils.cpp
|
2015-08-02 21:57:32 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/check.o: lib/check.cpp lib/cxx11emu.h lib/check.h lib/config.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/check.o $(SRCDIR)/check.cpp
|
2014-05-24 12:54:16 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/check64bit.o: lib/check64bit.cpp lib/cxx11emu.h lib/check64bit.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/check64bit.o $(SRCDIR)/check64bit.cpp
|
2011-07-06 08:55:17 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkassert.o: lib/checkassert.cpp lib/cxx11emu.h lib/checkassert.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkassert.o $(SRCDIR)/checkassert.cpp
|
2013-05-07 21:35:16 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkautovariables.o: lib/checkautovariables.cpp lib/cxx11emu.h lib/checkautovariables.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkautovariables.o $(SRCDIR)/checkautovariables.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkbool.o: lib/checkbool.cpp lib/cxx11emu.h lib/checkbool.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/astutils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkbool.o $(SRCDIR)/checkbool.cpp
|
2013-05-05 09:22:04 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkboost.o: lib/checkboost.cpp lib/cxx11emu.h lib/checkboost.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkboost.o $(SRCDIR)/checkboost.cpp
|
2011-10-23 13:07:43 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkbufferoverrun.o: lib/checkbufferoverrun.cpp lib/cxx11emu.h lib/checkbufferoverrun.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/astutils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkbufferoverrun.o $(SRCDIR)/checkbufferoverrun.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkclass.o: lib/checkclass.cpp lib/cxx11emu.h lib/checkclass.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkclass.o $(SRCDIR)/checkclass.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkcondition.o: lib/checkcondition.cpp lib/cxx11emu.h lib/checkcondition.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/astutils.h lib/checkother.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkcondition.o $(SRCDIR)/checkcondition.cpp
|
2014-08-29 18:32:50 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkexceptionsafety.o: lib/checkexceptionsafety.cpp lib/cxx11emu.h lib/checkexceptionsafety.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/utils.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkexceptionsafety.o $(SRCDIR)/checkexceptionsafety.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkfunctions.o: lib/checkfunctions.cpp lib/cxx11emu.h lib/checkfunctions.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h
|
2015-11-22 10:40:48 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkfunctions.o $(SRCDIR)/checkfunctions.cpp
|
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkinternal.o: lib/checkinternal.cpp lib/cxx11emu.h lib/checkinternal.h lib/check.h lib/config.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkinternal.o $(SRCDIR)/checkinternal.cpp
|
2011-10-28 22:39:46 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkio.o: lib/checkio.cpp lib/cxx11emu.h lib/checkio.h lib/check.h lib/config.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkio.o $(SRCDIR)/checkio.cpp
|
2012-05-20 12:04:47 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkleakautovar.o: lib/checkleakautovar.cpp lib/cxx11emu.h lib/checkleakautovar.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/checkmemoryleak.h lib/checknullpointer.h lib/symboldatabase.h lib/astutils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkleakautovar.o $(SRCDIR)/checkleakautovar.cpp
|
2012-05-26 08:53:46 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkmemoryleak.o: lib/checkmemoryleak.cpp lib/cxx11emu.h lib/checkmemoryleak.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/astutils.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkmemoryleak.o $(SRCDIR)/checkmemoryleak.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checknullpointer.o: lib/checknullpointer.cpp lib/cxx11emu.h lib/checknullpointer.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checknullpointer.o $(SRCDIR)/checknullpointer.cpp
|
2010-10-31 11:51:25 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkother.o: lib/checkother.cpp lib/cxx11emu.h lib/checkother.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/astutils.h lib/symboldatabase.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkother.o $(SRCDIR)/checkother.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkpostfixoperator.o: lib/checkpostfixoperator.cpp lib/cxx11emu.h lib/checkpostfixoperator.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkpostfixoperator.o $(SRCDIR)/checkpostfixoperator.cpp
|
2010-10-16 23:57:25 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checksizeof.o: lib/checksizeof.cpp lib/cxx11emu.h lib/checksizeof.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checksizeof.o $(SRCDIR)/checksizeof.cpp
|
2013-05-05 09:22:04 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkstl.o: lib/checkstl.cpp lib/cxx11emu.h lib/checkstl.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/checknullpointer.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkstl.o $(SRCDIR)/checkstl.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkstring.o: lib/checkstring.cpp lib/cxx11emu.h lib/checkstring.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkstring.o $(SRCDIR)/checkstring.cpp
|
2014-08-27 09:45:50 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checktype.o: lib/checktype.cpp lib/cxx11emu.h lib/checktype.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checktype.o $(SRCDIR)/checktype.cpp
|
2014-09-11 18:10:19 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkuninitvar.o: lib/checkuninitvar.cpp lib/cxx11emu.h lib/checkuninitvar.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/astutils.h lib/checknullpointer.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkuninitvar.o $(SRCDIR)/checkuninitvar.cpp
|
2010-10-31 12:31:11 +01:00
|
|
|
|
2016-11-05 21:45:31 +01:00
|
|
|
$(SRCDIR)/checkunusedfunctions.o: lib/checkunusedfunctions.cpp lib/cxx11emu.h lib/checkunusedfunctions.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/analyzerinfo.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkunusedfunctions.o $(SRCDIR)/checkunusedfunctions.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkunusedvar.o: lib/checkunusedvar.cpp lib/cxx11emu.h lib/checkunusedvar.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkunusedvar.o $(SRCDIR)/checkunusedvar.cpp
|
2011-08-19 20:35:25 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/checkvaarg.o: lib/checkvaarg.cpp lib/cxx11emu.h lib/checkvaarg.h lib/config.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/checkvaarg.o $(SRCDIR)/checkvaarg.cpp
|
2014-08-06 14:25:49 +02:00
|
|
|
|
2016-10-29 12:38:10 +02:00
|
|
|
$(SRCDIR)/cppcheck.o: lib/cppcheck.cpp lib/cxx11emu.h lib/cppcheck.h lib/config.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/platform.h lib/importproject.h lib/timer.h lib/check.h lib/token.h lib/valueflow.h lib/tokenize.h lib/tokenlist.h lib/analyzerinfo.h lib/preprocessor.h lib/path.h lib/checkunusedfunctions.h lib/version.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/cppcheck.o $(SRCDIR)/cppcheck.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-10-29 12:18:11 +02:00
|
|
|
$(SRCDIR)/errorlogger.o: lib/errorlogger.cpp lib/cxx11emu.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/path.h lib/cppcheck.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/check.h lib/token.h lib/valueflow.h lib/tokenize.h lib/tokenlist.h lib/analyzerinfo.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/errorlogger.o $(SRCDIR)/errorlogger.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-20 13:22:46 +02:00
|
|
|
$(SRCDIR)/importproject.o: lib/importproject.cpp lib/cxx11emu.h lib/importproject.h lib/config.h lib/platform.h lib/path.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/timer.h lib/tokenize.h lib/tokenlist.h lib/token.h lib/valueflow.h
|
2016-08-13 10:50:03 +02:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/importproject.o $(SRCDIR)/importproject.cpp
|
|
|
|
|
2015-11-29 11:09:21 +01:00
|
|
|
$(SRCDIR)/library.o: lib/library.cpp lib/cxx11emu.h lib/library.h lib/config.h lib/mathlib.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/path.h lib/tokenlist.h lib/token.h lib/valueflow.h lib/symboldatabase.h lib/astutils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/library.o $(SRCDIR)/library.cpp
|
2013-07-08 18:26:18 +02:00
|
|
|
|
2014-02-15 07:52:17 +01:00
|
|
|
$(SRCDIR)/mathlib.o: lib/mathlib.cpp lib/cxx11emu.h lib/mathlib.h lib/config.h lib/errorlogger.h lib/suppressions.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/mathlib.o $(SRCDIR)/mathlib.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2014-02-15 07:52:17 +01:00
|
|
|
$(SRCDIR)/path.o: lib/path.cpp lib/cxx11emu.h lib/path.h lib/config.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/path.o $(SRCDIR)/path.cpp
|
2010-07-17 16:38:36 +02:00
|
|
|
|
2016-10-02 16:20:48 +02:00
|
|
|
$(SRCDIR)/pathmatch.o: lib/pathmatch.cpp lib/cxx11emu.h lib/pathmatch.h lib/config.h lib/path.h
|
2016-10-02 12:38:44 +02:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/pathmatch.o $(SRCDIR)/pathmatch.cpp
|
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/platform.o: lib/platform.cpp lib/cxx11emu.h lib/platform.h lib/config.h
|
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/platform.o $(SRCDIR)/platform.cpp
|
|
|
|
|
|
|
|
$(SRCDIR)/preprocessor.o: lib/preprocessor.cpp lib/cxx11emu.h lib/preprocessor.h lib/config.h lib/path.h lib/errorlogger.h lib/suppressions.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/preprocessor.o $(SRCDIR)/preprocessor.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/settings.o: lib/settings.cpp lib/cxx11emu.h lib/settings.h lib/config.h lib/library.h lib/mathlib.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/platform.h lib/importproject.h lib/timer.h lib/preprocessor.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/settings.o $(SRCDIR)/settings.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2015-11-29 11:09:21 +01:00
|
|
|
$(SRCDIR)/suppressions.o: lib/suppressions.cpp lib/cxx11emu.h lib/suppressions.h lib/config.h lib/path.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/suppressions.o $(SRCDIR)/suppressions.cpp
|
2011-08-22 18:54:23 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/symboldatabase.o: lib/symboldatabase.cpp lib/cxx11emu.h lib/symboldatabase.h lib/config.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/symboldatabase.o $(SRCDIR)/symboldatabase.cpp
|
2010-11-13 07:31:56 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/templatesimplifier.o: lib/templatesimplifier.cpp lib/cxx11emu.h lib/templatesimplifier.h lib/config.h lib/mathlib.h lib/token.h lib/valueflow.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/templatesimplifier.o $(SRCDIR)/templatesimplifier.cpp
|
2012-01-01 21:55:05 +01:00
|
|
|
|
2014-02-15 07:52:17 +01:00
|
|
|
$(SRCDIR)/timer.o: lib/timer.cpp lib/cxx11emu.h lib/timer.h lib/config.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/timer.o $(SRCDIR)/timer.cpp
|
2010-08-31 22:22:48 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/token.o: lib/token.cpp lib/cxx11emu.h lib/token.h lib/config.h lib/valueflow.h lib/mathlib.h lib/errorlogger.h lib/suppressions.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/token.o $(SRCDIR)/token.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/tokenize.o: lib/tokenize.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/check.h lib/token.h lib/valueflow.h lib/path.h lib/symboldatabase.h lib/templatesimplifier.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/tokenize.o $(SRCDIR)/tokenize.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/tokenlist.o: lib/tokenlist.cpp lib/cxx11emu.h lib/tokenlist.h lib/config.h lib/token.h lib/valueflow.h lib/mathlib.h lib/path.h lib/preprocessor.h lib/settings.h lib/library.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/tokenlist.o $(SRCDIR)/tokenlist.cpp
|
2012-05-05 18:39:29 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
$(SRCDIR)/valueflow.o: lib/valueflow.cpp lib/cxx11emu.h lib/valueflow.h lib/config.h lib/astutils.h lib/errorlogger.h lib/suppressions.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/symboldatabase.h lib/token.h lib/tokenlist.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o $(SRCDIR)/valueflow.o $(SRCDIR)/valueflow.cpp
|
2014-01-04 20:57:02 +01:00
|
|
|
|
2016-10-29 12:18:11 +02:00
|
|
|
cli/cmdlineparser.o: cli/cmdlineparser.cpp lib/cxx11emu.h cli/cmdlineparser.h lib/cppcheck.h lib/config.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/platform.h lib/importproject.h lib/timer.h lib/check.h lib/token.h lib/valueflow.h lib/tokenize.h lib/tokenlist.h lib/analyzerinfo.h cli/cppcheckexecutor.h cli/filelister.h lib/path.h cli/threadexecutor.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_CLI} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o cli/cmdlineparser.o cli/cmdlineparser.cpp
|
2010-09-05 10:47:31 +02:00
|
|
|
|
2016-12-08 23:39:29 +01:00
|
|
|
cli/cppcheckexecutor.o: cli/cppcheckexecutor.cpp lib/cxx11emu.h cli/cppcheckexecutor.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/analyzerinfo.h lib/importproject.h lib/platform.h cli/cmdlineparser.h lib/cppcheck.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/timer.h lib/check.h lib/token.h lib/valueflow.h lib/tokenize.h lib/tokenlist.h cli/filelister.h lib/path.h lib/pathmatch.h lib/preprocessor.h cli/threadexecutor.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_CLI} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o cli/cppcheckexecutor.o cli/cppcheckexecutor.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-10-02 12:38:44 +02:00
|
|
|
cli/filelister.o: cli/filelister.cpp lib/cxx11emu.h cli/filelister.h lib/path.h lib/config.h lib/pathmatch.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_CLI} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o cli/filelister.o cli/filelister.cpp
|
2011-01-18 18:37:15 +01:00
|
|
|
|
2014-02-15 07:52:17 +01:00
|
|
|
cli/main.o: cli/main.cpp lib/cxx11emu.h cli/cppcheckexecutor.h lib/errorlogger.h lib/config.h lib/suppressions.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_CLI} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o cli/main.o cli/main.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-10-29 12:18:11 +02:00
|
|
|
cli/threadexecutor.o: cli/threadexecutor.cpp lib/cxx11emu.h cli/threadexecutor.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/importproject.h lib/platform.h lib/cppcheck.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/timer.h lib/check.h lib/token.h lib/valueflow.h lib/tokenize.h lib/tokenlist.h lib/analyzerinfo.h cli/cppcheckexecutor.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_CLI} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o cli/threadexecutor.o cli/threadexecutor.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2014-02-15 07:52:17 +01:00
|
|
|
test/options.o: test/options.cpp lib/cxx11emu.h test/options.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/options.o test/options.cpp
|
2010-09-26 05:29:23 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/test64bit.o: test/test64bit.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/check64bit.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/test64bit.o test/test64bit.cpp
|
2011-07-06 08:55:17 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testassert.o: test/testassert.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkassert.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testassert.o test/testassert.cpp
|
2013-05-07 21:35:16 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testastutils.o: test/testastutils.cpp lib/cxx11emu.h lib/astutils.h lib/token.h lib/config.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/platform.h lib/importproject.h lib/timer.h lib/tokenize.h lib/tokenlist.h test/testsuite.h
|
2016-01-16 19:08:51 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testastutils.o test/testastutils.cpp
|
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testautovariables.o: test/testautovariables.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkautovariables.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testautovariables.o test/testautovariables.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testbool.o: test/testbool.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkbool.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testbool.o test/testbool.cpp
|
2013-05-05 09:22:04 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testboost.o: test/testboost.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkboost.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testboost.o test/testboost.cpp
|
2011-10-23 13:07:43 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testbufferoverrun.o: test/testbufferoverrun.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkbufferoverrun.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testbufferoverrun.o test/testbufferoverrun.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testcharvar.o: test/testcharvar.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkother.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testcharvar.o test/testcharvar.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testclass.o: test/testclass.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkclass.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testclass.o test/testclass.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testcmdlineparser.o: test/testcmdlineparser.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/redirect.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testcmdlineparser.o test/testcmdlineparser.cpp
|
2010-09-06 21:45:29 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testcondition.o: test/testcondition.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkcondition.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testcondition.o test/testcondition.cpp
|
2014-08-29 18:32:50 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testconstructors.o: test/testconstructors.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkclass.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testconstructors.o test/testconstructors.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-10-29 12:18:11 +02:00
|
|
|
test/testcppcheck.o: test/testcppcheck.cpp lib/cxx11emu.h lib/cppcheck.h lib/config.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/platform.h lib/importproject.h lib/timer.h lib/check.h lib/token.h lib/valueflow.h lib/tokenize.h lib/tokenlist.h lib/analyzerinfo.h test/testsuite.h lib/path.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testcppcheck.o test/testcppcheck.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-10-29 12:18:11 +02:00
|
|
|
test/testerrorlogger.o: test/testerrorlogger.cpp lib/cxx11emu.h lib/cppcheck.h lib/config.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/platform.h lib/importproject.h lib/timer.h lib/check.h lib/token.h lib/valueflow.h lib/tokenize.h lib/tokenlist.h lib/analyzerinfo.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testerrorlogger.o test/testerrorlogger.cpp
|
2010-12-05 22:06:36 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testexceptionsafety.o: test/testexceptionsafety.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkexceptionsafety.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/utils.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testexceptionsafety.o test/testexceptionsafety.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-10-02 12:38:44 +02:00
|
|
|
test/testfilelister.o: test/testfilelister.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/pathmatch.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testfilelister.o test/testfilelister.cpp
|
2010-12-26 10:53:09 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testfunctions.o: test/testfunctions.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkfunctions.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-22 10:40:48 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testfunctions.o test/testfunctions.cpp
|
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testgarbage.o: test/testgarbage.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenize.h lib/tokenlist.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/check.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testgarbage.o test/testgarbage.cpp
|
2014-09-24 13:50:57 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testimportproject.o: test/testimportproject.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/importproject.h lib/platform.h
|
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testimportproject.o test/testimportproject.cpp
|
|
|
|
|
|
|
|
test/testincompletestatement.o: test/testincompletestatement.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenize.h lib/tokenlist.h lib/checkother.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testincompletestatement.o test/testincompletestatement.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testinternal.o: test/testinternal.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkinternal.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testinternal.o test/testinternal.cpp
|
2011-10-28 22:39:46 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testio.o: test/testio.cpp lib/cxx11emu.h lib/checkio.h lib/check.h lib/config.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testio.o test/testio.cpp
|
2012-05-20 22:19:10 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testleakautovar.o: test/testleakautovar.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkleakautovar.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testleakautovar.o test/testleakautovar.cpp
|
2012-05-26 08:53:46 +02:00
|
|
|
|
2016-08-19 11:13:56 +02:00
|
|
|
test/testlibrary.o: test/testlibrary.cpp lib/cxx11emu.h lib/library.h lib/config.h lib/mathlib.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/settings.h lib/platform.h lib/importproject.h lib/timer.h lib/token.h lib/valueflow.h lib/tokenlist.h lib/tokenize.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testlibrary.o test/testlibrary.cpp
|
2013-10-27 17:10:43 +01:00
|
|
|
|
2015-11-29 11:09:21 +01:00
|
|
|
test/testmathlib.o: test/testmathlib.cpp lib/cxx11emu.h lib/mathlib.h lib/config.h test/testsuite.h lib/errorlogger.h lib/suppressions.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testmathlib.o test/testmathlib.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testmemleak.o: test/testmemleak.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkmemoryleak.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h lib/symboldatabase.h lib/preprocessor.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testmemleak.o test/testmemleak.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testnullpointer.o: test/testnullpointer.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checknullpointer.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testnullpointer.o test/testnullpointer.cpp
|
2010-10-31 11:51:25 +01:00
|
|
|
|
2015-11-29 11:09:21 +01:00
|
|
|
test/testoptions.o: test/testoptions.cpp lib/cxx11emu.h test/options.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testoptions.o test/testoptions.cpp
|
2010-09-26 05:29:23 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testother.o: test/testother.cpp lib/cxx11emu.h lib/preprocessor.h lib/config.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/symboldatabase.h lib/token.h lib/valueflow.h lib/mathlib.h lib/checkother.h lib/check.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h test/testutils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testother.o test/testother.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2015-11-29 11:09:21 +01:00
|
|
|
test/testpath.o: test/testpath.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/path.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testpath.o test/testpath.cpp
|
2010-10-29 22:11:41 +02:00
|
|
|
|
2016-10-02 12:38:44 +02:00
|
|
|
test/testpathmatch.o: test/testpathmatch.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/pathmatch.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testpathmatch.o test/testpathmatch.cpp
|
2011-02-01 12:34:05 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testpostfixoperator.o: test/testpostfixoperator.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkpostfixoperator.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testpostfixoperator.o test/testpostfixoperator.cpp
|
2010-10-16 23:57:25 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testpreprocessor.o: test/testpreprocessor.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/preprocessor.h lib/tokenize.h lib/tokenlist.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testpreprocessor.o test/testpreprocessor.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2015-11-29 11:09:21 +01:00
|
|
|
test/testrunner.o: test/testrunner.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/preprocessor.h test/options.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testrunner.o test/testrunner.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-10-02 12:38:44 +02:00
|
|
|
test/testsamples.o: test/testsamples.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/path.h lib/pathmatch.h test/redirect.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testsamples.o test/testsamples.cpp
|
2014-03-28 12:00:51 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testsimplifytemplate.o: test/testsimplifytemplate.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenize.h lib/tokenlist.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/templatesimplifier.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testsimplifytemplate.o test/testsimplifytemplate.cpp
|
2014-09-24 13:50:57 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testsimplifytokens.o: test/testsimplifytokens.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenize.h lib/tokenlist.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testsimplifytokens.o test/testsimplifytokens.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testsimplifytypedef.o: test/testsimplifytypedef.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenize.h lib/tokenlist.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testsimplifytypedef.o test/testsimplifytypedef.cpp
|
2014-09-24 13:50:57 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testsizeof.o: test/testsizeof.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checksizeof.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testsizeof.o test/testsizeof.cpp
|
2013-05-05 09:22:04 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/teststl.o: test/teststl.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkstl.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/teststl.o test/teststl.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/teststring.o: test/teststring.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkstring.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h test/testutils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/teststring.o test/teststring.cpp
|
2014-08-27 09:45:50 +02:00
|
|
|
|
2015-11-29 11:09:21 +01:00
|
|
|
test/testsuite.o: test/testsuite.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h test/options.h test/redirect.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testsuite.o test/testsuite.cpp
|
2010-12-30 09:46:44 +01:00
|
|
|
|
2016-10-29 12:18:11 +02:00
|
|
|
test/testsuppressions.o: test/testsuppressions.cpp lib/cxx11emu.h lib/cppcheck.h lib/config.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/platform.h lib/importproject.h lib/timer.h lib/check.h lib/token.h lib/valueflow.h lib/tokenize.h lib/tokenlist.h lib/analyzerinfo.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testsuppressions.o test/testsuppressions.cpp
|
2011-05-03 12:18:05 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testsymboldatabase.o: test/testsymboldatabase.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h test/testutils.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/tokenize.h lib/tokenlist.h lib/symboldatabase.h lib/token.h lib/valueflow.h lib/utils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testsymboldatabase.o test/testsymboldatabase.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-10-29 12:18:11 +02:00
|
|
|
test/testthreadexecutor.o: test/testthreadexecutor.cpp lib/cxx11emu.h lib/cppcheck.h lib/config.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/errorlogger.h lib/suppressions.h lib/platform.h lib/importproject.h lib/timer.h lib/check.h lib/token.h lib/valueflow.h lib/tokenize.h lib/tokenlist.h lib/analyzerinfo.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testthreadexecutor.o test/testthreadexecutor.cpp
|
2010-06-14 22:18:09 +02:00
|
|
|
|
2015-11-29 11:09:21 +01:00
|
|
|
test/testtimer.o: test/testtimer.cpp lib/cxx11emu.h lib/timer.h lib/config.h test/testsuite.h lib/errorlogger.h lib/suppressions.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testtimer.o test/testtimer.cpp
|
2012-09-15 19:49:48 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testtoken.o: test/testtoken.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h test/testutils.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/tokenize.h lib/tokenlist.h lib/token.h lib/valueflow.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testtoken.o test/testtoken.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testtokenize.o: test/testtokenize.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenize.h lib/tokenlist.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/path.h lib/preprocessor.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testtokenize.o test/testtokenize.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testtokenlist.o: test/testtokenlist.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/path.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/tokenlist.h lib/token.h lib/valueflow.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testtokenlist.o test/testtokenlist.cpp
|
2015-06-13 18:08:13 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testtype.o: test/testtype.cpp lib/cxx11emu.h lib/preprocessor.h lib/config.h lib/tokenize.h lib/errorlogger.h lib/suppressions.h lib/tokenlist.h lib/symboldatabase.h lib/token.h lib/valueflow.h lib/mathlib.h lib/checktype.h lib/check.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h test/testutils.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testtype.o test/testtype.cpp
|
2014-09-11 18:10:19 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testuninitvar.o: test/testuninitvar.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/checkuninitvar.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testuninitvar.o test/testuninitvar.cpp
|
2010-10-31 12:31:11 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testunusedfunctions.o: test/testunusedfunctions.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h test/testsuite.h lib/checkunusedfunctions.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testunusedfunctions.o test/testunusedfunctions.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testunusedprivfunc.o: test/testunusedprivfunc.cpp lib/cxx11emu.h lib/tokenize.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenlist.h lib/checkclass.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h test/testsuite.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testunusedprivfunc.o test/testunusedprivfunc.cpp
|
2010-02-23 18:38:18 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testunusedvar.o: test/testunusedvar.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenize.h lib/tokenlist.h lib/checkunusedvar.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testunusedvar.o test/testunusedvar.cpp
|
2010-05-13 22:14:29 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testvaarg.o: test/testvaarg.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/checkvaarg.h lib/check.h lib/token.h lib/valueflow.h lib/mathlib.h lib/tokenize.h lib/tokenlist.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testvaarg.o test/testvaarg.cpp
|
2014-08-06 14:25:49 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testvalueflow.o: test/testvalueflow.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h test/testutils.h lib/settings.h lib/library.h lib/mathlib.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h lib/tokenize.h lib/tokenlist.h lib/valueflow.h lib/token.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testvalueflow.o test/testvalueflow.cpp
|
2014-01-04 20:57:02 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
test/testvarid.o: test/testvarid.cpp lib/cxx11emu.h test/testsuite.h lib/errorlogger.h lib/config.h lib/suppressions.h lib/tokenize.h lib/tokenlist.h lib/token.h lib/valueflow.h lib/mathlib.h lib/settings.h lib/library.h lib/standards.h lib/platform.h lib/importproject.h lib/timer.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_TEST} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o test/testvarid.o test/testvarid.cpp
|
2014-09-24 13:50:57 +02:00
|
|
|
|
2016-07-20 12:21:00 +02:00
|
|
|
externals/simplecpp/simplecpp.o: externals/simplecpp/simplecpp.cpp lib/cxx11emu.h externals/simplecpp/simplecpp.h
|
2016-07-28 13:54:08 +02:00
|
|
|
$(CXX) $(CPPFLAGS) $(CFG) $(CXXFLAGS) -w $(UNDEF_STRICT_ANSI) -c -o externals/simplecpp/simplecpp.o externals/simplecpp/simplecpp.cpp
|
2016-07-20 12:21:00 +02:00
|
|
|
|
2014-02-15 07:52:17 +01:00
|
|
|
externals/tinyxml/tinyxml2.o: externals/tinyxml/tinyxml2.cpp lib/cxx11emu.h externals/tinyxml/tinyxml2.h
|
2016-07-28 13:54:08 +02:00
|
|
|
$(CXX) $(CPPFLAGS) $(CFG) $(CXXFLAGS) -w $(UNDEF_STRICT_ANSI) -c -o externals/tinyxml/tinyxml2.o externals/tinyxml/tinyxml2.cpp
|
2014-01-17 22:52:05 +01:00
|
|
|
|
2016-10-02 16:20:48 +02:00
|
|
|
tools/dmake.o: tools/dmake.cpp lib/cxx11emu.h cli/filelister.h lib/pathmatch.h lib/config.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o tools/dmake.o tools/dmake.cpp
|
2014-05-03 18:54:48 +02:00
|
|
|
|
|
|
|
tools/reduce.o: tools/reduce.cpp lib/cxx11emu.h
|
2015-11-08 12:52:56 +01:00
|
|
|
$(CXX) ${INCLUDE_FOR_LIB} $(CPPFLAGS) $(CFG) $(CXXFLAGS) $(UNDEF_STRICT_ANSI) -c -o tools/reduce.o tools/reduce.cpp
|
2014-05-03 18:54:48 +02:00
|
|
|
|