Updated dmake: activated validateCFG when 'make checkcfg' is called.

This commit is contained in:
orbitcowboy 2017-07-29 12:42:43 +02:00
parent 6f066458f2
commit 7c5d14bf66
2 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ test: all
check: all
./testrunner -q
checkcfg: cppcheck
checkcfg: cppcheck validateCFG
./test/cfg/runtests.sh
dmake: tools/dmake.o cli/filelister.o $(SRCDIR)/pathmatch.o $(SRCDIR)/path.o externals/simplecpp/simplecpp.o

View File

@ -375,7 +375,7 @@ int main(int argc, char **argv)
fout << "\t./testrunner\n\n";
fout << "check:\tall\n";
fout << "\t./testrunner -q\n\n";
fout << "checkcfg:\tcppcheck\n";
fout << "checkcfg:\tcppcheck validateCFG\n";
fout << "\t./test/cfg/runtests.sh\n\n";
fout << "dmake:\ttools/dmake.o cli/filelister.o $(SRCDIR)/pathmatch.o $(SRCDIR)/path.o externals/simplecpp/simplecpp.o\n";
fout << "\t$(CXX) $(CXXFLAGS) -o $@ tools/dmake.o cli/filelister.o $(SRCDIR)/pathmatch.o $(SRCDIR)/path.o externals/simplecpp/simplecpp.o -Ilib $(LDFLAGS)\n\n";