Makefile 103 B

123456789101112
  1. .PHONY: all
  2. all: ;
  3. .PHONY:
  4. clean:
  5. rm -rf __pycache__
  6. .PHONY: format
  7. format: ;
  8. .PHONY: test
  9. test: ;