widget/Makefile

22 lines
475 B
Makefile
Raw Normal View History

2024-01-05 12:59:07 -06:00
all:
@echo
@echo This defines the primitive widgets
@echo
@echo This is how the gui communicates with the toolkit plugin
@echo The widgets are things like Windows, Buttons, Labels, etc
@echo
# 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:
GO111MODULE= pkgsite
goimports:
goimports -w *.go
2024-01-05 12:59:07 -06:00
redomod:
rm -f go.*
GO111MODULE= go mod init
GO111MODULE= go mod tidy