summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6eae26b34f2500967a963a22b53bedd45758909e (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 "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-gui-demo examples-helloworld

examples-helloworld:
	make -C cmds/helloworld

examples-gui-demo:
	make -C cmds/gui-demo

doc:
	godoc -v