19 lines
252 B
Makefile
19 lines
252 B
Makefile
|
# go get -u github.com/faiface/pixel-examples
|
||
|
# cd ~/go/src/github.com/faiface/pixel-examples/community/seascape-shader
|
||
|
|
||
|
all:
|
||
|
go build
|
||
|
./seascape-shader
|
||
|
|
||
|
push:
|
||
|
git pull
|
||
|
git add --all
|
||
|
-git commit -a -s
|
||
|
git push
|
||
|
|
||
|
update:
|
||
|
git pull
|
||
|
|
||
|
diff:
|
||
|
git diff
|