From dd8e22e5665729aee192eb131949a8b29a4c3e08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 26 Apr 2015 13:49:35 +0200 Subject: Add distclean targets fro root Makefile --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.2.3