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

1234567891011121314151617181920212223
  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. emgraph:
  7. python -c "import utils; utils.em_graph()"
  8. .PHONY: clean cleanpycache cleanpyc refreshdyn distclean
  9. distclean: clean
  10. -@rm -vf dynleapi.py
  11. clean: cleanpycache
  12. cleanpyc:
  13. -@rm -vf *.pyc
  14. cleanpycache: cleanpyc
  15. -@rm -vfR __pycache__