Remove reduce tool in 'make clean'

This commit is contained in:
Thomas Jarosch 2013-01-03 21:59:28 +01:00
parent 4a2d2f78ef
commit 241d23ba8e
2 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ reduce: tools/reduce.cpp
$(CXX) -g -o reduce tools/reduce.cpp -Ilib lib/*.cpp
clean:
rm -f build/*.o lib/*.o cli/*.o test/*.o externals/tinyxml/*.o testrunner cppcheck cppcheck.1
rm -f build/*.o lib/*.o cli/*.o test/*.o externals/tinyxml/*.o testrunner reduce cppcheck cppcheck.1
man: man/cppcheck.1

View File

@ -358,7 +358,7 @@ int main(int argc, char **argv)
#ifdef _WIN32
fout << "\tdel build\\*.o\n\tdel lib\\*.o\n\tdel cli\\*.o\n\tdel test\\*.o\n\tdel *.exe\n";
#else
fout << "\trm -f build/*.o lib/*.o cli/*.o test/*.o externals/tinyxml/*.o testrunner cppcheck cppcheck.1\n\n";
fout << "\trm -f build/*.o lib/*.o cli/*.o test/*.o externals/tinyxml/*.o testrunner reduce cppcheck cppcheck.1\n\n";
fout << "man:\tman/cppcheck.1\n\n";
fout << "man/cppcheck.1:\t$(MAN_SOURCE)\n\n";
fout << "\t$(XP) $(DB2MAN) $(MAN_SOURCE)\n\n";