暫無描述
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 275B

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