Automatically update tcell every time make is run

This commit is contained in:
Zachary Yedidia
2016-04-21 18:54:52 -04:00
parent 408fbbabeb
commit 5112fa6fa7

View File

@@ -2,13 +2,17 @@
VERSION = "$(shell git rev-parse --short HEAD)" VERSION = "$(shell git rev-parse --short HEAD)"
build: runtime build: runtime tcell
go get -d ./cmd/micro go get -d ./cmd/micro
go build -ldflags "-X main.Version=$(VERSION)" -o micro ./cmd/micro go build -ldflags "-X main.Version=$(VERSION)" -o micro ./cmd/micro
install: build runtime install: build
mv micro $(GOPATH)/bin mv micro $(GOPATH)/bin
tcell:
cd $(GOPATH)/src/github.com/gdamore/tcell
git pull
runtime: runtime:
go get -u github.com/jteeuwen/go-bindata/... go get -u github.com/jteeuwen/go-bindata/...
$(GOPATH)/bin/go-bindata -o runtime.go runtime/... $(GOPATH)/bin/go-bindata -o runtime.go runtime/...