refactor some commonly used code into a trait
[pharext/pharext] / Makefile
index 3f00b50b50f7a3513aee4004f8dc5fe32225ba2e..cf19520418200fc554b77b8694d01a6fbd36859e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,11 +5,16 @@
 all: bin/pharext
 
 bin/pharext: src/* src/pharext/*
+       @for file in $?; do php -l $$file | sed -ne '/^No syntax errors/!p' && exit $${PIPESTATUS[0]}; done
+       phpunit tests
        php -d phar.readonly=0 build/create-phar.php
        chmod +x $@
 
+test:
+       phpunit tests
+       
 clean:
        rm bin/pharext*
 
-.PHONY: all clean
-       
+.PHONY: all clean test
+.SUFFIXES: .php
\ No newline at end of file