preserve symlinks
[pharext/pharext] / Makefile
index cf19520418200fc554b77b8694d01a6fbd36859e..cc88f708d7f39c6fe91087971ffb2b1d709f994c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,17 +4,30 @@
 
 all: bin/pharext
 
-bin/pharext: src/* src/pharext/*
+bin/pharext: src/* src/pharext/* src/pharext/*/*
+       @echo "Linting changed source files ... "
        @for file in $?; do php -l $$file | sed -ne '/^No syntax errors/!p' && exit $${PIPESTATUS[0]}; done
-       phpunit tests
+       @echo "Creating bin/pharext ... "
        php -d phar.readonly=0 build/create-phar.php
        chmod +x $@
 
 test:
-       phpunit tests
+       @echo "Running tests ... "
+       @phpunit tests
        
 clean:
        rm bin/pharext*
 
-.PHONY: all clean test
-.SUFFIXES: .php
\ No newline at end of file
+release:
+       @echo "Previous Version: $$(git tag --list | tail -n1)"; \
+       read -p "Release Version:  v" VERSION; \
+       echo "Preparing release ... "; \
+       sed -i '' -e "s/@PHAREXT_VERSION@/$$VERSION/" src/pharext/Version.php; \
+       $(MAKE); \
+       git ci -am "release v$$VERSION"; \
+       git tag v$$VERSION; \
+       sed -i '' -e "s/$$VERSION/@PHAREXT_VERSION@/" src/pharext/Version.php; \
+       git ci -am "back to dev"
+
+
+.PHONY: all clean test release