summaryrefslogtreecommitdiff
path: root/Makefile
blob: e2aa6b11122767e6646429c196ee31469e0ca0cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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:
	make -C cmds/helloworld
	make -C cmds/gui-example
	make -C cmds/gui-demo

doc:
	godoc -v