blob: 7225bcef998111b22f169facdefe5c3bab25bd50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 gui-example
|