aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-04-26 13:49:35 +0200
committerKarel Kočí <cynerd@email.cz>2015-04-26 13:49:35 +0200
commitdd8e22e5665729aee192eb131949a8b29a4c3e08 (patch)
treebb1c85f92c2efd58d21d240bfff6f0a5a2bdb552 /Makefile
parent9d2e2cc4665e9cf112c86d085faf372fc157f2a4 (diff)
downloadlinux-conf-perf-dd8e22e5665729aee192eb131949a8b29a4c3e08.tar.gz
linux-conf-perf-dd8e22e5665729aee192eb131949a8b29a4c3e08.tar.bz2
linux-conf-perf-dd8e22e5665729aee192eb131949a8b29a4c3e08.zip
Add distclean targets fro root Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4b36d1c..66d49ab 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: all help parse_kconfig write_config build run test clean clean_linux clean_buildroot mlinux mbuildroot deflinux
+.PHONY: all help parse_kconfig write_config build run test clean clean_linux clean_buildroot mlinux mbuildroot deflinux distclean_linux distclean_buildroot distclean
-include .conf.mk
@@ -47,12 +47,21 @@ clean:
@$(MAKE) -C scripts/write_config/ clean
$(RM) -r build
+distclean: clean distclean_linux distclean_buildroot
+ $(RM) .conf.mk
+
clean_linux:
@$(MAKE) -C linux clean
+distclean_linux:
+ @$(MAKE) -C linux distclean
+
clean_buildroot:
@$(MAKE) -C scripts/buildroot clean
+distclean_buildroot:
+ @$(MAKE) -C scripts/buildroot distclean
+
#######################################
.conf.mk: conf.py