Skip to content

Commit ccff005

Browse files
committed
make clean completeness
Several build artifacts were missing from the Makeflie's clean directive. Signed-off-by: Peter Grayson <[email protected]>
1 parent b6f35d2 commit ccff005

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

Makefile

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,18 @@ clean:
4747
$(MAKE) -C $$dir clean; \
4848
done
4949
rm -rf build
50-
rm -f stgit/*.pyc
51-
rm -f stgit/commands/*.pyc
52-
rm -f TAGS
53-
rm -f stgit/commands/cmdlist.py
50+
rm -rf dist
51+
rm -f stgit/*.pyc
52+
rm -rf stgit/__pycache__
53+
rm -f stgit/builtin_version.py
54+
rm -f stgit/commands/*.pyc
55+
rm -rf stgit/commands/__pycache__
56+
rm -f stgit/commands/cmdlist.py
57+
rm -f stgit/lib/*.pyc
58+
rm -rf stgit/lib/__pycache__
59+
rm -f TAGS tags
60+
rm -f MANIFEST
61+
rm -f stgit-completion.bash
5462

5563
tags:
5664
ctags -R stgit/*

0 commit comments

Comments
 (0)