Skip to content

Commit

Permalink
Added clean_all Makefile target
Browse files Browse the repository at this point in the history
  • Loading branch information
johan-bjareholt committed Jul 19, 2017
1 parent c4dbf06 commit d7f9b19
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# - virtualenv --python=python3 venv
# - source ./venv/bin/activate

.PHONY: build install test clean docs
.PHONY: build install test docs clean clean_all

# TODO: Currently no way to do a `setup.py develop`/`pip install --editable`
build:
Expand Down Expand Up @@ -62,5 +62,13 @@ docs-deps:

clean:
rm -rf build dist
mkdir dist
mkdir dist/activitywatch

# Clean all subprojects
clean_all: clean
make --directory=aw-client clean
make --directory=aw-core clean
make --directory=aw-qt clean
make --directory=aw-server clean
make --directory=aw-watcher-afk clean
make --directory=aw-watcher-window clean
make --directory=aw-webui clean

0 comments on commit d7f9b19

Please sign in to comment.