adding "install" shortcut to makefile for composer dependencies
parent
945a09cfc3
commit
0922823814
10
Makefile
10
Makefile
|
@ -2,8 +2,14 @@ tag = $(shell git describe)
|
||||||
export_name = phpservermon-$(tag)
|
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