Skip to content

Commit 050dee8

Browse files
author
Gianluca Arbezzano
committed
Merge pull request #54 from vim-php/feature/build-flow
Define new build flow.
2 parents abc8c4c + 468d730 commit 050dee8

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
.test_fs
22
build/
33
vendor/
4-
./phpctags

Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ source := README.md \
66
PHPCtags.class.php
77

88
.PHONY: all
9-
all: phpctags
9+
all: build/phpctags.phar
1010

1111
.PHONY: clean
1212
clean:
1313
@echo "Cleaning executables ..."
14-
@rm -f ./phpctags
1514
@rm -f ./build/phpctags.phar
1615
@echo "Done!"
1716

@@ -20,7 +19,6 @@ dist-clean:
2019
@echo "Cleaning old build files and vendor libraries ..."
2120
@rm -rf ./build
2221
@rm -rf ./vendor
23-
@rm -f ./phpctags
2422
@echo "Done!"
2523

2624
.PHONY: install
@@ -45,8 +43,3 @@ vendor: composer.lock build/composer.phar
4543
build/phpctags.phar: vendor $(source) | build
4644
@php -dphar.readonly=0 buildPHAR.php
4745
@chmod +x build/phpctags.phar
48-
49-
phpctags: build/phpctags.phar
50-
@echo "Building phpctags ..."
51-
@cp build/phpctags.phar phpctags
52-
@echo "Done!"

buildPHAR.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ function ($current) {
3535
'tests/*',
3636
'Makefile',
3737
'bin/phpctags',
38-
'phpctags',
39-
'phpctags.sh',
4038
'buildPHAR.php',
4139
);
4240

0 commit comments

Comments
 (0)