From: Parker Berberian Date: Thu, 27 Jun 2019 20:45:39 +0000 (-0400) Subject: Marks all Make Targets as Phony X-Git-Tag: 2.0.99~69^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=ec624bf2d41bce63765e3448afffc20f3075ffe2;p=laas.git 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 --- 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