From 7451d13f838866a4e0a124b9677f72d93caa5651 Mon Sep 17 00:00:00 2001 From: Felix Bartels Date: Sat, 9 Feb 2019 09:47:00 +0100 Subject: [PATCH] make build-simple also phony add default target Signed-off-by: Felix Bartels --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6ca21dd..53ddc87 100644 --- a/Makefile +++ b/Makefile @@ -47,6 +47,7 @@ build: --build-arg ADDITIONAL_KOPANO_WEBAPP_PLUGINS="$(ADDITIONAL_KOPANO_WEBAPP_PLUGINS)" \ -t $(docker_repo)/kopano_$(component) $(component)/ +.PHONY: build-simple build-simple: component ?= ssl build-simple: docker build -t $(docker_repo)/kopano_$(component) $(component)/ @@ -57,7 +58,7 @@ build-base: build-core: component=core make build -build-utils: +build-utils: build-core component=utils make build build-webapp: @@ -179,3 +180,5 @@ test-quick: test-stop: docker-compose -f $(COMPOSE_FILE) stop || true + +default: build-all