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 331B

1234567891011121314151617181920
  1. all: refreshdyn dbinit
  2. refreshdyn: distclean
  3. python -c "import utils; utils.refreshdyn()"
  4. dbinit:
  5. python -c "import utils; utils.db_init()"
  6. .PHONY: clean cleanpycache cleanpyc refreshdyn distclean
  7. distclean: clean
  8. -@rm dynleapi.py
  9. clean: cleanpycache
  10. cleanpyc:
  11. -@rm -v *.pyc
  12. cleanpycache: cleanpyc
  13. -@rm -vR __pycache__