summaryrefslogtreecommitdiff
path: root/Makefile
blob: 866591b36840ecff080cfc01cce1e4d13df4e4b0 (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
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