Skip to content

Commit 1da0609

Browse files
committed
added clean target
1 parent dc2cb18 commit 1da0609

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,11 @@
1919
# </LICENSE_BLOCK>
2020

2121

22+
clean:
23+
find qgist/ -name '*.pyc' -exec rm -f {} +
24+
find qgist/ -name '*.pyo' -exec rm -f {} +
25+
find qgist/ -name '*~' -exec rm -f {} +
26+
find ./ -name '__pycache__' -exec rm -fr {} +
27+
2228
translate:
2329
python3 -c "import makefile; makefile.translate()"

0 commit comments

Comments
 (0)