Skip to content

Commit

Permalink
Improve make clean
Browse files Browse the repository at this point in the history
(c) Copyright IBM Corp. 2016
  • Loading branch information
parente committed Jul 20, 2016
1 parent 7aca428 commit 274069f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ bash: ## Start a bash shell within the dev container

clean: ## Remove all built files from the host (but not the dev docker image)
@-rm -rf dist
@-rm -rf build
@-rm -rf *.egg-info
@-find kernel_gateway -name __pycache__ -exec rm -fr {} \;
@-find kernel_gateway -name '*.pyc' -exec rm -fr {} \;
@-make -C docs clean

dev: ARGS?=
dev: PYARGS?=
Expand Down

0 comments on commit 274069f

Please sign in to comment.