fyne/Makefile

36 lines
816 B
Makefile
Raw Normal View History

2024-12-06 01:51:39 -06:00
VERSION = $(shell git describe --tags)
BUILDTIME = $(shell date +%Y.%m.%d)
2024-02-27 02:21:00 -06:00
all: plugin
#ldd fyne.so
2024-02-27 02:21:00 -06:00
plugin:
2024-12-05 19:09:04 -06:00
GO111MODULE=off go build -v -buildmode=plugin -o fyne.so
2024-02-27 02:21:00 -06:00
2024-12-06 01:51:39 -06:00
install: clean
go build -v -buildmode=plugin -o ~/go/lib/fyne-${VERSION}.so \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
cd ~/go/lib && ln -f -s fyne-${VERSION}.so fyne.so
clean:
2024-12-13 00:22:54 -06:00
rm -f fyne fyne.so go.*
2024-12-04 03:15:35 -06:00
2024-12-04 02:26:58 -06:00
binary:
go build -v -x
non-plugin:
go build -v -x
./fyne
2024-02-27 02:21:00 -06:00
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