kevinschoon-pomo/Makefile

72 lines
1.9 KiB
Makefile
Raw Normal View History

2019-03-17 20:12:48 +01:00
DOCKER_CMD=docker run --rm -ti -w /build/pomo -v $$PWD:/build/pomo
DOCKER_IMAGE=pomo-build
2020-09-08 18:35:47 +02:00
2018-01-21 16:38:17 +01:00
VERSION ?= $(shell git describe --tags 2>/dev/null)
ifeq "$(VERSION)" ""
VERSION := UNKNOWN
endif
2020-09-08 18:35:47 +02:00
LDFLAGS=\
-X github.com/kevinschoon/pomo/pkg/internal/version.Version=$(VERSION)
.PHONY: \
2018-01-22 16:07:58 +01:00
test \
docs \
pomo-build \
2018-01-22 17:27:35 +01:00
readme \
2018-02-01 22:11:44 +01:00
release \
release-linux \
release-darwin
2020-09-08 18:35:47 +02:00
default:
cd cmd/pomo && \
go install -ldflags '${LDFLAGS}'
2018-07-12 21:04:02 +02:00
bin/pomo: test
2020-09-08 18:35:47 +02:00
cd cmd/pomo && \
go build -ldflags '${LDFLAGS}' -o ../../$@
2018-07-12 21:04:02 +02:00
2020-09-08 18:35:47 +02:00
#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
pomo-build:
docker build -t $(DOCKER_IMAGE) .
bin/pomo-linux: bin/pomo-$(VERSION)-linux-amd64
bin/pomo-darwin: bin/pomo-$(VERSION)-darwin-amd64
2020-09-08 18:35:47 +02:00
bin/pomo-$(VERSION)-linux-amd64: bin
$(DOCKER_CMD) --env GOOS=linux --env GOARCH=amd64 $(DOCKER_IMAGE) go build -ldflags "${LDFLAGS}" -o $@
2018-02-01 21:20:22 +01:00
2018-02-01 22:11:44 +01:00
bin/pomo-$(VERSION)-linux-amd64.md5:
2018-02-01 22:27:09 +01:00
md5sum bin/pomo-$(VERSION)-linux-amd64 | sed -e 's/bin\///' > $@
2018-02-01 22:11:44 +01:00
2020-09-08 18:35:47 +02:00
bin/pomo-$(VERSION)-darwin-amd64: bin
# This is used to cross-compile a Darwin compatible Mach-O executable
2018-02-01 21:20:22 +01:00
# on Linux for OSX, you need to install https://github.com/tpoechtrager/osxcross
2020-09-08 18:35:47 +02:00
$(DOCKER_CMD) --env GOOS=darwin --env GOARCH=amd64 --env CC=x86_64-apple-darwin15-cc --env CGO_ENABLED=1 $(DOCKER_IMAGE) go build -ldflags "${LDFLAGS}" -o $@
2018-02-01 22:11:44 +01:00
bin/pomo-$(VERSION)-darwin-amd64.md5:
2018-02-01 22:27:09 +01:00
md5sum bin/pomo-$(VERSION)-darwin-amd64 | sed -e 's/bin\///' > $@
2018-02-01 22:11:44 +01:00
2018-02-01 22:16:55 +01:00
release-linux: bin/pomo-$(VERSION)-linux-amd64 bin/pomo-$(VERSION)-linux-amd64.md5
2018-02-01 22:11:44 +01:00
2018-02-01 22:16:55 +01:00
release-darwin: bin/pomo-$(VERSION)-darwin-amd64 bin/pomo-$(VERSION)-darwin-amd64.md5
2018-02-01 21:20:22 +01:00
2018-02-01 22:11:44 +01:00
release: release-linux release-darwin
2018-01-22 15:59:03 +01:00
2019-02-10 21:39:45 +01:00
docs: www/data/readme.json
cd www && cp ../install.sh static/ && hugo -d ../docs
www/data/readme.json: www/data README.md
cat README.md | python -c 'import json,sys; print(json.dumps({"content": sys.stdin.read()}))' > $@
2019-02-10 21:39:45 +01:00
www/data bin:
mkdir -p $@