From 8677158783fda43af906c21c5706a35a8221614e Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Sun, 22 Feb 2015 13:32:24 +0100 Subject: [PATCH] Add add a 'make clean' target in the testprogs directory. The testprogs directory is not under cmake control, but has its own Makefile, because we do not need discovery of build flags and dependencies. But to make it simple to rebuild all, 'make clean' would be usefule. Add it. Note that all executables are built directly from the source files without building object files explicitly. Therefore, only the executables need to be removed. --- kdbg/testprogs/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kdbg/testprogs/Makefile b/kdbg/testprogs/Makefile index 7b7530d..210b38a 100644 --- a/kdbg/testprogs/Makefile +++ b/kdbg/testprogs/Makefile @@ -59,3 +59,7 @@ testfile: testfile.cpp widechar: widechar.cpp g++ -o $@ $(CXXFLAGS) $^ + + +clean: + $(RM) $(PROGS) -- 2.11.4.GIT