From 241d23ba8e93d369f1baf4e0a294b6a7897525c7 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Thu, 3 Jan 2013 21:59:28 +0100 Subject: [PATCH] Remove reduce tool in 'make clean' --- Makefile | 2 +- tools/dmake.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 77fb01dbf..e4b8ffa2e 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/tools/dmake.cpp b/tools/dmake.cpp index e9d113a8e..1d9d35d02 100644 --- a/tools/dmake.cpp +++ b/tools/dmake.cpp @@ -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";