kevinschoon-pomo/Makefile

36 lines
598 B
Makefile

VERSION ?= $(shell git describe --tags 2>/dev/null)
ifeq "$(VERSION)" ""
VERSION := UNKNOWN
endif
.PHONY: \
all \
test \
docs \
readme \
release
all: bin/pomo
clean:
-rm -fv bin/* docs/*
bindata.go:
go-bindata -pkg main -o $@ tomato-icon.png
test:
go test ./...
go vet ./...
release: bin bindata.go
go build -ldflags "-X main.Version=$(VERSION)" -o bin/pomo-$(VERSION)-linux
docs: readme
cd www && hugo -d ../docs
readme: www/data
cat README.md | python -c 'import json,sys; print(json.dumps({"content": sys.stdin.read()}))' > www/data/readme.json
www/data bin:
mkdir -p $@