2018-01-21 16:38:17 +01:00
|
|
|
VERSION ?= $(shell git describe --tags 2>/dev/null)
|
|
|
|
ifeq "$(VERSION)" ""
|
|
|
|
VERSION := UNKNOWN
|
|
|
|
endif
|
2018-01-21 11:35:03 +01:00
|
|
|
|
|
|
|
.PHONY: \
|
2018-01-21 16:38:17 +01:00
|
|
|
all \
|
|
|
|
test
|
2018-01-21 11:35:03 +01:00
|
|
|
|
|
|
|
all: bin/pomo
|
|
|
|
|
|
|
|
clean:
|
2018-01-21 16:38:17 +01:00
|
|
|
rm -v bin/* 2> /dev/null || true
|
2018-01-21 11:35:03 +01:00
|
|
|
|
|
|
|
bindata.go:
|
|
|
|
go-bindata -pkg main -o $@ tomato-icon.png
|
|
|
|
|
2018-01-21 16:38:17 +01:00
|
|
|
test:
|
|
|
|
go test ./...
|
|
|
|
|
2018-01-21 11:35:03 +01:00
|
|
|
bin/pomo: bindata.go
|
2018-01-21 16:38:17 +01:00
|
|
|
@echo mkdir bin 2>/dev/null || true
|
|
|
|
go build -ldflags "-X main.Version=$(VERSION)" -o bin/pomo
|