From 67b12f57ce30aa7c7d4feaf1614b524e1068bfbc Mon Sep 17 00:00:00 2001 From: ChronosX88 Date: Mon, 29 Jul 2019 15:23:55 +0400 Subject: [PATCH] chore: Make target of Makefile "all" for building executable instead of go install and testing --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bf536ee..72c1094 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,6 @@ -all: install test +all: + cd cmd; \ + go build -o ../signaller; install: go install github.com/nxshock/signaller/cmd