Skip to content

Commit e829c9a

Browse files
committed
Updated Makefile to better clean up after itself with 'clean' and 'distclean'.
1 parent 3aab908 commit e829c9a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ clean_rc:
2626
rm -fv $(PWD)/dshell
2727
rm -fv $(PWD)/dshell-decode
2828
rm -fv $(PWD)/.dshellrc
29+
rm -fv $(PWD)/bin/decode
2930

3031
clean_py:
3132
find $(PWD)/decoders -name '__init__.py' -exec rm -v {} \;
3233

3334
clean_pyc:
3435
find $(PWD)/decoders -name '*.pyc' -exec rm -v {} \;
35-
rm $(PWD)/bin/decode
36+
find $(PWD)/lib -name '*.pyc' -exec rm -v {} \;
3637

3738
clean_pydoc:
3839
find $(PWD)/doc -name '*.htm*' -exec rm -v {} \;

decoders/flows/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)