diff mbox

remove validation/tmp.o in clean target

Message ID 20180419051728.25352-1-uwe@kleine-koenig.org (mailing list archive)
State Mainlined, archived
Headers show

Commit Message

Uwe Kleine-König April 19, 2018, 5:17 a.m. UTC
To prevent validation/tmp.o being still around after

	make check && make clean

remove it as part of the latter command.

Signed-off-by: Uwe Kleine-König <uwe@kleine-koenig.org>
---
 Makefile | 1 +
 1 file changed, 1 insertion(+)

Comments

Luc Van Oostenryck April 19, 2018, 7:55 a.m. UTC | #1
On Thu, Apr 19, 2018 at 07:17:28AM +0200, Uwe Kleine-König wrote:
> To prevent validation/tmp.o being still around after
> 
> 	make check && make clean
> 
> remove it as part of the latter command.
> 
> Signed-off-by: Uwe Kleine-König <uwe@kleine-koenig.org>

Acked-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-sparse" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/Makefile b/Makefile
index a72802ff986a..faa6ea8d4551 100644
--- a/Makefile
+++ b/Makefile
@@ -242,4 +242,5 @@  clean-check:
 	                 -o -name "*.c.error.expected" \
 	                 -o -name "*.c.error.got" \
 	                 -o -name "*.c.error.diff" \
+			 -o -name "*.o" \
 	                 \) -exec rm {} \;