diff mbox

[v2] kmod: Add distclean rule

Message ID 4A0D954A.2030603@siemens.com (mailing list archive)
State New, archived
Headers show

Commit Message

Jan Kiszka May 15, 2009, 4:16 p.m. UTC
Jan Kiszka wrote:
> --- a/Makefile
> +++ b/Makefile
> @@ -68,3 +68,6 @@ rpm:	all
>  
>  clean:
>  	$(MAKE) -C $(KERNELDIR) M=`pwd` $@
> +
> +distclean:
> +	rm -f config.kbuild config.mak

This one is "cleaner":

--------->

Remove the configure output config.kbuild and config.mak via distclean.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---

 Makefile |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

--
To unsubscribe from this list: send the line "unsubscribe kvm" 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 dad5f0b..a4c59c9 100644
--- a/Makefile
+++ b/Makefile
@@ -68,3 +68,6 @@  rpm:	all
 
 clean:
 	$(MAKE) -C $(KERNELDIR) M=`pwd` $@
+
+distclean: clean
+	rm -f config.kbuild config.mak