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

2 년 전
123456789101112131415
  1. all: clean test
  2. test:
  3. vendor/bin/phpunit
  4. coverage:
  5. vendor/bin/phpunit --coverage-html=artifacts/coverage
  6. view-coverage:
  7. open artifacts/coverage/index.html
  8. clean:
  9. rm -rf artifacts/*
  10. .PHONY: coverage