Skip to content

Commit

Permalink
Only delete the '*.so' that we create
Browse files Browse the repository at this point in the history
Signed-off-by: Jay Bhatt <jayybhatt007@gmail.com>
  • Loading branch information
jayybhatt authored and godlygeek committed Apr 24, 2023
1 parent 6de749f commit 854e855
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,10 @@ gh-pages: ## Publish documentation on BBGitHub Pages

.PHONY: clean
clean: ## Clean any built/generated artifacts
find . | grep -E '(\.o|\.so|\.gcda|\.gcno|\.gcov\.json\.gz)' | xargs rm -rf
find . | grep -E '(\.o|\.gcda|\.gcno|\.gcov\.json\.gz)' | xargs rm -rf
find . | grep -E '(__pycache__|\.pyc|\.pyo)' | xargs rm -rf
rm -rf build
rm -f src/pystack/_pystack.*.so
rm -f pystack.info
rm -rf pystack-coverage

Expand Down

0 comments on commit 854e855

Please sign in to comment.