From 35eaca75f13dff775410dfef4c684a1e6a616174 Mon Sep 17 00:00:00 2001 From: Hans Verkuil Date: Fri, 17 Aug 2012 14:15:51 +0200 Subject: [PATCH] Add a top-level cleanall target. make cleanall does a distclean for the top-level and the linux directory. Signed-off-by: Hans Verkuil --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 7302b8a..608e15e 100644 --- a/Makefile +++ b/Makefile @@ -30,3 +30,7 @@ download untar:: dir:: $(MAKE) -C linux/ $(MAKECMDGOALS) DIR="../$(DIR)" + +cleanall: + $(MAKE) distclean + $(MAKE) -C linux distclean