diff options
author | hut <hut@lavabit.com> | 2010-02-25 03:13:22 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-02-25 20:27:54 +0100 |
commit | b22ec5cfbd3b3501de170293c8465904a26b6377 (patch) | |
tree | ca3e21a296cf028b5474c5d29cb85b982231215c | |
parent | e9e4b4ffa4b4865c46acbebfc7ef2083bfac0210 (diff) | |
download | ranger-b22ec5cfbd3b3501de170293c8465904a26b6377.tar.gz |
make clean: delete pyo files as well.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index c2393415..aab7f5b5 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ cleandoc: test -d $(DOCDIR) && rm -f $(DOCDIR)/*.html clean: - find . -regex .\*.pyc$ | xargs rm + find . -regex .\*.py[co]$ | xargs rm test: ./all_tests.py |