adding "install" shortcut to makefile for composer dependencies

This commit is contained in:
Pepijn Over 2014-08-05 09:51:09 +02:00
parent 945a09cfc3
commit 0922823814
1 changed files with 8 additions and 2 deletions

View File

@ -2,8 +2,14 @@ tag = $(shell git describe)
export_name = phpservermon-$(tag)
help:
@echo ' PHP Server Monitor - $(tag) '
@echo ' - make export [tag=...] - create a new release from tag '
@echo ' PHP Server Monitor - $(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:
@echo 'Building release for tag $(tag) '