summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-10-06 15:58:10 -0400
committerPatrick Uiterwijk <puiterwijk@redhat.com>2014-10-07 16:48:01 +0200
commit5fd2b52a5518864571afb9139074e4d314ec688c (patch)
treea1260ea81092360a1b27961923915d3ee6538887 /Makefile
parent73eeae98716c0e25f31cdb2c347c1939525d6ef7 (diff)
downloadipsilon-5fd2b52a5518864571afb9139074e4d314ec688c.tar.gz
ipsilon-5fd2b52a5518864571afb9139074e4d314ec688c.tar.xz
ipsilon-5fd2b52a5518864571afb9139074e4d314ec688c.zip
Fix make cscope and clean
clean should clean more and cscope should not try to read an unexisting file. Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
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 \