add Makefile for convenience - twitch-go - twitch.tv web application in Go | |
git clone git://git.codemadness.org/twitch-go | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 501671b9b5439e632e83db0ef13bf57fadd38966 | |
parent 66916f8ad4616aa0d3f1a259ccc01e156ab2246e | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sun, 12 Jun 2016 16:44:47 +0200 | |
add Makefile for convenience | |
Diffstat: | |
A Makefile | 5 +++++ | |
1 file changed, 5 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -0,0 +1,5 @@ | |
+build: clean | |
+ GOPATH=`pwd` go build -ldflags=-s | |
+ | |
+clean: | |
+ rm -f twitch-go |