aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCody Hiar <codyhiar@Codys-MacBook-Pro.local>2016-09-01 16:08:19 -0600
committerCody Hiar <codyhiar@Codys-MacBook-Pro.local>2016-09-01 16:08:19 -0600
commit2e460acb06d05b6fa907625c3742535566f343dd (patch)
tree4386762f21d28eefe4e83b951866b4489e3dca4f /Makefile
parent7641b3272fabd1112d30b5b1c07c32f6f9e51050 (diff)
Added command to build the entire thing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 299454f..c44aca5 100644
--- a/Makefile
+++ b/Makefile
@@ -13,3 +13,9 @@ build-javascript: ## Build the neovim javascript image, depends on php tag
build-shell: ## Build the neovim shell image, depends on javascript tag
docker build -f Dockerfile.shell -t thornycrackers/neovim .
+
+build: ## Build all the whole thing
+ make build-python
+ make build-php
+ make build-javascript
+ make build-shell