No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 415B

123456789101112131415161718192021
  1. all: check doc pip
  2. check:
  3. python -m unittest -v
  4. doc: cleandoc
  5. doxygen
  6. pip: cleanpycache
  7. pip install --upgrade -r requirements.txt
  8. .PHONY: check doc clean cleanpyc cleandoc cleanpycache
  9. cleandoc:
  10. -rm -Rfv ./doc/
  11. cleanpyc:
  12. -find ./ |grep -E "\.pyc$$" |xargs rm -fv 2>/dev/null
  13. cleanpycache: cleanpyc
  14. -find ./ -type d |grep '__pycache__' | xargs rmdir -fv 2>/dev/null
  15. clean: cleanpyc cleandoc cleanpycache