X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=Makefile;h=4c78e66c8a43c6bd6ba81ca82efe033e10e6813d;hb=66d7a880cb37f809df6806e5dc62d191dc257d08;hp=6b3dc1f0dc6ccc1e327869470e74d6d71f0289b7;hpb=0813c3a5e5dc60c691f7f658b8fe3b51925c6bc1;p=pharext%2Fpharext diff --git a/Makefile b/Makefile index 6b3dc1f..4c78e66 100644 --- a/Makefile +++ b/Makefile @@ -4,18 +4,15 @@ 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 - @echo "Running tests ... " - @phpunit tests @echo "Creating bin/pharext ... " php -d phar.readonly=0 build/create-phar.php - chmod +x $@ test: @echo "Running tests ... " - @phpunit tests + @php -dphar.readonly=0 `which phpunit` tests clean: rm bin/pharext* @@ -24,12 +21,11 @@ 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; \ + sed -e "s/@PHAREXT_VERSION@/$$VERSION/" build/Version.php.in > src/pharext/Version.php && \ + $(MAKE) -B SIGN=1 && \ + git ci -am "release v$$VERSION" && \ + git tag v$$VERSION && \ + cp build/Version.php.in src/pharext/Version.php && \ git ci -am "back to dev" - .PHONY: all clean test release