We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7d0a3d commit d1d3870Copy full SHA for d1d3870
1 file changed
Makefile
@@ -6,17 +6,20 @@ help:
6
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
7
8
.PHONY: dist
9
-dist: ## Build dists
10
- @$(CURDIR)/tools/clean-cache.sh
+dist: clean ## Build dists
11
@$(CURDIR)/tools/dist.sh
12
- @$(CURDIR)/tools/clean-cache.sh soft
+ @$(MAKE) clean-cache
13
14
-.PHONY: clean
15
-clean: ## Clean cache, include dist
+.PHONY: clean-cache
+clean-cache:
16
find -name *.egg-info -exec rm -rf {} +
17
find -name *.pyc -exec rm -rf {} +
18
find -name *.pyo -exec rm -rf {} +
19
find -name *.so -exec rm -rf {} +
+ find -name *.pyd -exec rm -rf {} +
20
+
21
+.PHONY: clean
22
+clean: clean-cache ## Clean cache, include dist
23
rm -rf dist
24
rm -rf build
25
0 commit comments