blob: 6d403bfeb06f0cb3a5adebcb4b6eb64e5d001cf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  | 
#a git remote add github [email protected]:wit-go/gadgets.git
all: goimports vet
	@echo
	@echo gadgets are collections of widget primaties that work
	@echo in ways that are common enough they are generally useful
	@echo
	@echo The gadgets are themselves outside of the 'gui' binary tree
	@echo structure. They do not modify the fundamental nature of
	@echo how the 'gui' package communicates to the toolkits via the plugin
	@echo
	@echo in that sense, they are intended to be useful wrappers
	@echo
goimports:
	goimports -w *.go
vet:
	@GO111MODULE=off go vet
redomod:
	rm -f go.*
	GO111MODULE= go mod init
	GO111MODULE= go mod tidy
github:
	git push origin master
	git push origin devel
	git push origin --tags
	git push github master
	git push github devel
	git push github --tags
goproxy:
	GOPROXY=https://proxy.golang.org GO111MODULE=on go get go.wit.com/gui/[email protected]
  |