From 50664fe115b5fd88bb01305fef36f7331652b5b0 Mon Sep 17 00:00:00 2001 From: Julien Pivotto Date: Sun, 26 Feb 2017 09:01:35 +0100 Subject: [PATCH] compilation: Make build the default target It is really strange that whe I run make, it does not build mgmt. This commit makes build the default target, without moving the target, therefore we keep as much as we can the order of the file. This also removes the confusion for designers that would run "make" instead of "make art", whose work would be disrupted when we add a -- let's say -- make alpharelese command. Signed-off-by: Julien Pivotto --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index e072faf9..735b7409 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,8 @@ ifneq ($(GOTAGS),) BUILD_FLAGS = -tags '$(GOTAGS)' endif +default: build + # # art #