adding "install" shortcut to makefile for composer dependencies
parent
945a09cfc3
commit
0922823814
6
Makefile
6
Makefile
|
@ -4,6 +4,12 @@ export_name = phpservermon-$(tag)
|
||||||
help:
|
help:
|
||||||
@echo ' PHP Server Monitor - $(tag) '
|
@echo ' PHP Server Monitor - $(tag) '
|
||||||
@echo ' - make export [tag=...] - create a new release from tag '
|
@echo ' - make export [tag=...] - create a new release from tag '
|
||||||
|
@echo ' - make install - install all dependencies '
|
||||||
|
|
||||||
|
install:
|
||||||
|
@echo 'Downloading dependencies using Composer'
|
||||||
|
php composer.phar install
|
||||||
|
@echo 'Install complete '
|
||||||
|
|
||||||
export:
|
export:
|
||||||
@echo 'Building release for tag $(tag) '
|
@echo 'Building release for tag $(tag) '
|
||||||
|
|
Loading…
Reference in New Issue