Simplify Makefile build target

This commit is contained in:
Deluan 2020-01-06 13:47:48 -05:00
parent 100aca6a1e
commit 3eaf80de99

View file

@ -1,13 +1,7 @@
#@IgnoreInspection BashAddShebang
BINARY=sonic-server
SOURCES := $(shell find . -name '*.go')
all: $(BINARY)
$(BINARY): $(SOURCES)
go build
build:
go build -x ${BINARY}
.PHONY: clean
clean: