diff --git a/.gitignore b/.gitignore index d4df0bb..b37e051 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ .test_fs build/ vendor/ -./phpctags diff --git a/Makefile b/Makefile index 7448705..b619333 100644 --- a/Makefile +++ b/Makefile @@ -6,12 +6,11 @@ source := README.md \ PHPCtags.class.php .PHONY: all -all: phpctags +all: build/phpctags.phar .PHONY: clean clean: @echo "Cleaning executables ..." - @rm -f ./phpctags @rm -f ./build/phpctags.phar @echo "Done!" @@ -20,7 +19,6 @@ dist-clean: @echo "Cleaning old build files and vendor libraries ..." @rm -rf ./build @rm -rf ./vendor - @rm -f ./phpctags @echo "Done!" .PHONY: install @@ -45,8 +43,3 @@ vendor: composer.lock build/composer.phar build/phpctags.phar: vendor $(source) | build @php -dphar.readonly=0 buildPHAR.php @chmod +x build/phpctags.phar - -phpctags: build/phpctags.phar - @echo "Building phpctags ..." - @cp build/phpctags.phar phpctags - @echo "Done!" diff --git a/buildPHAR.php b/buildPHAR.php index 66793a1..37e5764 100644 --- a/buildPHAR.php +++ b/buildPHAR.php @@ -35,8 +35,6 @@ function ($current) { 'tests/*', 'Makefile', 'bin/phpctags', - 'phpctags', - 'phpctags.sh', 'buildPHAR.php', );