/Makefile

http://github.com/crodas/Haanga · Makefile · 17 lines · 10 code · 6 blank · 1 comment · 0 complexity · c32a1b648b4c73efe4ee36ccef9b9798 MD5 · raw file

  1. all: build test
  2. build:
  3. #plex lib/Haanga/Compiler/Lexer.lex
  4. phplemon lib/Haanga/Compiler/Parser.y
  5. test:
  6. cd tests; ~/bin/php-5.2/bin/php /usr/bin/phpunit --colors --verbose TestSuite.php
  7. cd tests; php /usr/bin/phpunit --coverage-html coverage/ --colors --verbose TestSuite.php
  8. test-fast:
  9. cd tests; php /usr/bin/phpunit --stop-on-failure --colors --verbose TestSuite.php
  10. edit:
  11. vim lib/Haanga/Compiler/Parser.y lib/Haanga/Compiler/Tokenizer.php -O