kevinschoon-pomo/Makefile

43 lines
1022 B
Makefile
Raw Normal View History

2018-01-21 16:38:17 +01:00
VERSION ?= $(shell git describe --tags 2>/dev/null)
ifeq "$(VERSION)" ""
VERSION := UNKNOWN
endif
.PHONY: \
2018-01-21 16:38:17 +01:00
all \
2018-01-22 16:07:58 +01:00
test \
docs \
2018-01-22 17:27:35 +01:00
readme \
release
all: bin/pomo
clean:
-rm -fv bin/* docs/*
bindata.go: tomato-icon.png
go-bindata -pkg main -o $@ $^
2018-01-21 16:38:17 +01:00
test:
go test ./...
2018-01-26 16:34:21 +01:00
go vet ./...
2018-01-21 16:38:17 +01:00
2018-02-01 21:20:22 +01:00
release-linux: bin bindata.go
go build -ldflags "-X main.Version=$(VERSION)" -o bin/pomo-$(VERSION)-linux-amd64
release-osx: bin bindata.go
# This is used to cross-compile a Darwin compatible Mach-O executable
# on Linux for OSX, you need to install https://github.com/tpoechtrager/osxcross
PATH="$$PATH:/usr/local/osx-ndk-x86/bin" GOOS=darwin GOARCH=amd64 CC=/usr/local/osx-ndk-x86/bin/x86_64-apple-darwin15-cc CGO_ENABLED=1 go build $(FLAGS) -o bin/pomo-$(VERSION)-darwin-amd64
2018-01-22 15:59:03 +01:00
2018-01-22 17:27:35 +01:00
docs: readme
2018-01-22 16:07:58 +01:00
cd www && hugo -d ../docs
readme: www/data/readme.json
www/data/readme.json: www/data README.md
cat README.md | python -c 'import json,sys; print(json.dumps({"content": sys.stdin.read()}))' > $@
www/data bin:
mkdir -p $@