
I didn't realize quite how much space the binaries were taking so they have been purged from the repo. They will subsequently be distributed using github's release mechanism. If you cloned tt previously you will need to reclone it (it should save you in excess of 100MB of disk space :P). Apologies if you are one of the poor souls who tried to 'go get' it.
12 lines
371 B
Makefile
12 lines
371 B
Makefile
all:
|
|
go build -o bin/tt *.go
|
|
install:
|
|
install -m755 bin/tt /usr/local/bin
|
|
assets:
|
|
python3 tools/themegen.py | gofmt > generatedThemes.go
|
|
rel:
|
|
GOOS=darwin GOARCH=amd64 go build -o bin/tt-osx *.go
|
|
GOOS=windows GOARCH=amd64 go build -o bin/tt-windows *.go
|
|
GOOS=linux GOARCH=amd64 go build -o bin/tt-linux *.go
|
|
GOOS=linux GOARCH=386 go build -o bin/tt-linux_386 *.go
|