35 lines
934 B
Makefile
35 lines
934 B
Makefile
VERSION = $(shell git describe --tags)
|
|
BUILDTIME = $(shell date +%Y.%m.%d)
|
|
|
|
all:nocui.so
|
|
@#ldd nocui.so
|
|
|
|
nocui.so:
|
|
GO111MODULE=off go build -v -buildmode=plugin -o nocui.so \
|
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
|
|
|
install: clean
|
|
go build -buildmode=plugin -o ~/go/lib/nocui-${VERSION}.so \
|
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
|
cd ~/go/lib && ln -f -s nocui-${VERSION}.so nocui.so
|
|
|
|
clean:
|
|
rm -f nocui nocui.so
|
|
|
|
check-git-clean:
|
|
@git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)
|
|
|
|
# Test the README.md & doc.go file
|
|
# this runs pkgsite, the binary that does dev.go.dev
|
|
# go install golang.org/x/pkgsite/cmd/pkgsite@latest
|
|
pkgsite:
|
|
pkgsite
|
|
|
|
goimports:
|
|
goimports -w *.go
|
|
|
|
redomod:
|
|
rm -f go.*
|
|
GO111MODULE= go mod init
|
|
GO111MODULE= go mod tidy
|