summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3402f85059f39c967cb582479e725c35a481f88d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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

redomod:
	rm -f go.*
	GO111MODULE= go mod init
	GO111MODULE= go mod tidy