21 lines
465 B
Makefile
21 lines
465 B
Makefile
all:
|
|
@echo "# todo: fix Makefile to use the .forge file"
|
|
|
|
clean:
|
|
rm -f go.*
|
|
go-mod-clean --purge
|
|
|
|
build: goimports vet
|
|
GO111MODULE=off go build \
|
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
|
|
|
install: goimports vet
|
|
GO111MODULE=off go install \
|
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
|
|
|
vet:
|
|
GO111MODULE=off go vet
|
|
|
|
goimports:
|
|
goimports -w *.go
|