blob: 75756df0dd65659b1c54a540968d12fb0f1db89b (
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
|
all:
@echo
@echo "make examples # will run all the examples"
@echo "make update # full git update"
@echo
# should update every go dependancy (?)
update:
git pull
go get -v -t -u ./...
examples: examples-consolemouse examples-helloworld examples-gui-demo
examples-consolemouse:
make -C cmds/consolemouse
examples-helloworld:
make -C cmds/helloworld
examples-gui-demo:
make -C cmds/gui-demo
doc:
GO111MODULE="off" godoc -v
# GO111MODULE=on go install github.com/posener/goreadme/cmd/goreadme@latest (worked Oct 20 2022)
readme:
# goreadme > README.md
goreadme -factories -types -functions -variabless > README.md
|