/Makefile
Makefile | 17 lines | 10 code | 6 blank | 1 comment | 0 complexity | c32a1b648b4c73efe4ee36ccef9b9798 MD5 | raw file
1all: build test 2 3build: 4 #plex lib/Haanga/Compiler/Lexer.lex 5 phplemon lib/Haanga/Compiler/Parser.y 6 7 8test: 9 cd tests; ~/bin/php-5.2/bin/php /usr/bin/phpunit --colors --verbose TestSuite.php 10 cd tests; php /usr/bin/phpunit --coverage-html coverage/ --colors --verbose TestSuite.php 11 12test-fast: 13 cd tests; php /usr/bin/phpunit --stop-on-failure --colors --verbose TestSuite.php 14 15 16edit: 17 vim lib/Haanga/Compiler/Parser.y lib/Haanga/Compiler/Tokenizer.php -O