-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
20 lines (18 loc) · 765 Bytes
/
Makefile
File metadata and controls
20 lines (18 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.PHONY: build
build:
cd examples/grid; go build; cd ../../
cd examples/scroll; go build; cd ../../
cd examples/text-view; go build; cd ../../;
cd examples/animating-text; go build; cd ../../;
cd examples/clickables; go build; cd ../../;
cd examples/drawing-primitives; go build; cd ../../;
cd examples/image-tile; go build; cd ../../;
cd examples/mouse-events; go build; cd ../../;
cd examples/moving-image; go build; cd ../../;
cd examples/moving-text; go build; cd ../../;
cd examples/sine-wave; go build; cd ../../;
cd examples/sound-check; go build; cd ../../;
cd examples/sound-player; go build; cd ../../;
cd examples/children; go build; cd ../../;
cd examples/clipping; go build; cd ../../;
cd examples/many-children; go build; cd ../../;