From ec624bf2d41bce63765e3448afffc20f3075ffe2 Mon Sep 17 00:00:00 2001 From: Parker Berberian Date: Thu, 27 Jun 2019 16:45:39 -0400 Subject: Marks all Make Targets as Phony Our makefile doesn't actually make anything, and there was a naming conflict. Marking the rules PHONY solves this. Change-Id: I01d09bb22306a4c4a254b59418c4e2a339413868 Signed-off-by: Parker Berberian --- Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 31243b0..cc7f70a 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +.PHONY: build dev-up dev-start dev-stop up start stop data shell-nginx shell-web shell-db log-nginx log-web log-ps log-rmq log-worker + build: docker-compose -f docker-compose.yml -f docker-compose.override-dev.yml build -- cgit 1.2.3-korg