You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- WHL_BUILD_DIR :=package
- DOC_BUILD_DIR :=docs/build/
-
- # default rule
- default: whl docs
-
- .PHONY: docs
- docs:
- bash .dev_scripts/build_docs.sh
-
- .PHONY: linter
- linter:
- bash .dev_scripts/linter.sh
-
- .PHONY: test
- test:
- bash .dev_scripts/citest.sh
-
- .PHONY: whl
- whl:
- python setup.py sdist bdist_wheel
-
- .PHONY: clean
- clean:
- rm -rf $(WHL_BUILD_DIR) $(DOC_BUILD_DIR)
|