From 3b7938c41210508aa617607b5c86fd508de61a7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Burnichon?= Date: Mon, 6 Jul 2015 17:54:28 +0200 Subject: [PATCH] Add target install to Makefile Update Makefile to perform grunt install --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ad8794b31f..cc4c4a4131 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,12 @@ +# vim:noexpandtab:ts=4:sts=4:ft=make: + +install: + php bin/console system:clear-cache + npm install + composer install -o + ./node_modules/.bin/grunt install-assets + php bin/developer assets:compile-less + config: @php bin/console compile:configuration @@ -7,4 +16,4 @@ watch: test: @exit 0 -.PHONY: config watch test +.PHONY: install config watch test