From d086d51b5e550d65ad118db71d23c88429df3262 Mon Sep 17 00:00:00 2001 From: zbao Date: Fri, 23 Mar 2012 10:26:28 +0800 Subject: [PATCH] Keep cscope.out when distclean. It doesnt make sense to delete cscope.out when make distclean. Distclean is done all the time, and cscope database is also needed all the time. If we need to delete all the untracked files, we can use git-clean. Change-Id: Ic248ccd602ddc88d0b98d5d7f6cbbf530cd82e87 Signed-off-by: Zheng Bao Signed-off-by: zbao Reviewed-on: http://review.coreboot.org/831 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c5ee1f29d..2723efbbe 100644 --- a/Makefile +++ b/Makefile @@ -276,7 +276,7 @@ clean: clean-for-update clean-target clean-cscope: rm -f cscope.out -distclean: clean-cscope +distclean: rm -rf $(obj) rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig* .ccwrap .xcompile -- 2.25.1