From 5fd2b52a5518864571afb9139074e4d314ec688c Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 6 Oct 2014 15:58:10 -0400 Subject: [PATCH] Fix make cscope and clean clean should clean more and cscope should not try to read an unexisting file. Signed-off-by: Simo Sorce Reviewed-by: Patrick Uiterwijk --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8f904fa..d4d570d 100644 --- a/Makefile +++ b/Makefile @@ -31,9 +31,10 @@ ui-node: less/ipsilon.less less/admin.less clean: rm -fr testdir cscope.out + find ./ -name '*.pyc' -exec rm -f {} \; cscope: - git ls-files | xargs pycscope -i .filelist + git ls-files | xargs pycscope lp-test: pylint -d c,r,i,W0613 -r n -f colorized \ -- 2.20.1