Have "make build" build be the default again

This commit is contained in:
morganamilo 2019-10-10 16:37:37 +01:00
parent 6e2a4def99
commit b773ec2aa4
No known key found for this signature in database
GPG key ID: 6FE9E7996B0B082E

View file

@ -20,12 +20,12 @@ RELEASE_DIR := ${PKGNAME}_${VERSION}_${ARCH}
PACKAGE := $(RELEASE_DIR).tar.gz
SOURCES ?= $(shell find . -name "*.go" -type f ! -path "./vendor/*")
.PHONY: all
all: | clean release
.PHONY: default
default: build
.PHONY: all
all: | clean release
.PHONY: clean
clean:
$(GO) clean $(GOFLAGS) -i ./...