chore: Make target of Makefile "all" for building executable instead of go install and testing

This commit is contained in:
ChronosX88 2019-07-29 15:23:55 +04:00
parent 8bc553aff4
commit 67b12f57ce
Signed by: ChronosXYZ
GPG Key ID: 085A69A82C8C511A

View File

@ -1,4 +1,6 @@
all: install test
all:
cd cmd; \
go build -o ../signaller;
install:
go install github.com/nxshock/signaller/cmd