hub/Makefile

93 строки
2.2 KiB
Makefile
Исходник Обычный вид История

2016-01-25 07:57:22 +03:00
SOURCES = $(shell script/build files)
SOURCE_DATE_EPOCH ?= $(shell date +%s)
BUILD_DATE = $(shell date -u -d "@$(SOURCE_DATE_EPOCH)" '+%d %b %Y' 2>/dev/null || date -u -r "$(SOURCE_DATE_EPOCH)" '+%d %b %Y')
HUB_VERSION = $(shell bin/hub version | tail -1)
FLAGS_ALL = $(shell go version | grep -q 'go1.[89]' || echo 'all=')
export LDFLAGS := -extldflags '$(LDFLAGS)'
export GCFLAGS := $(FLAGS_ALL)-trimpath '$(PWD)'
export ASMFLAGS := $(FLAGS_ALL)-trimpath '$(PWD)'
2016-01-25 07:57:22 +03:00
MIN_COVERAGE = 89.4
2018-06-07 15:52:22 +03:00
2016-01-25 07:57:22 +03:00
HELP_CMD = \
2016-08-21 14:51:14 +03:00
share/man/man1/hub-alias.1 \
share/man/man1/hub-api.1 \
2016-08-21 14:51:14 +03:00
share/man/man1/hub-browse.1 \
share/man/man1/hub-ci-status.1 \
share/man/man1/hub-compare.1 \
share/man/man1/hub-create.1 \
share/man/man1/hub-delete.1 \
2016-08-21 14:51:14 +03:00
share/man/man1/hub-fork.1 \
share/man/man1/hub-pr.1 \
2016-08-21 14:51:14 +03:00
share/man/man1/hub-pull-request.1 \
share/man/man1/hub-release.1 \
share/man/man1/hub-issue.1 \
share/man/man1/hub-sync.1 \
2016-01-25 07:57:22 +03:00
HELP_EXT = \
2016-08-21 14:51:14 +03:00
share/man/man1/hub-am.1 \
share/man/man1/hub-apply.1 \
share/man/man1/hub-checkout.1 \
share/man/man1/hub-cherry-pick.1 \
share/man/man1/hub-clone.1 \
share/man/man1/hub-fetch.1 \
share/man/man1/hub-help.1 \
share/man/man1/hub-init.1 \
share/man/man1/hub-merge.1 \
share/man/man1/hub-push.1 \
share/man/man1/hub-remote.1 \
share/man/man1/hub-submodule.1 \
HELP_ALL = share/man/man1/hub.1 $(HELP_CMD) $(HELP_EXT)
2016-01-25 07:57:22 +03:00
TEXT_WIDTH = 87
bin/hub: $(SOURCES)
script/build -o $@
bin/md2roff: $(SOURCES)
go build -o $@ github.com/github/hub/md2roff-bin
2016-01-25 07:57:22 +03:00
test:
go test ./...
2016-01-25 07:57:22 +03:00
test-all: bin/cucumber
2018-06-07 15:52:22 +03:00
ifdef CI
script/test --coverage $(MIN_COVERAGE)
else
2016-01-25 07:57:22 +03:00
script/test
2018-06-07 15:52:22 +03:00
endif
2016-01-25 07:57:22 +03:00
bin/cucumber:
2016-01-25 07:57:22 +03:00
script/bootstrap
2016-01-25 09:14:05 +03:00
fmt:
go fmt ./...
2016-01-25 09:14:05 +03:00
man-pages: $(HELP_ALL:=.md) $(HELP_ALL) $(HELP_ALL:=.txt)
2016-01-25 07:57:22 +03:00
%.txt: %
2016-01-25 07:57:22 +03:00
groff -Wall -mtty-char -mandoc -Tutf8 -rLL=$(TEXT_WIDTH)n $< | col -b >$@
$(HELP_ALL): share/man/.man-pages.stamp
share/man/.man-pages.stamp: $(HELP_ALL:=.md) ./man-template.html bin/md2roff
bin/md2roff --manual="hub manual" \
--date="$(BUILD_DATE)" --version="$(HUB_VERSION)" \
2018-12-29 13:31:21 +03:00
--template=./man-template.html \
share/man/man1/*.md
touch $@
2016-01-25 07:57:22 +03:00
%.1.md: bin/hub
bin/hub help $(*F) --plain-text >$@
2016-01-25 07:57:22 +03:00
share/man/man1/hub.1.md:
2016-01-25 07:57:22 +03:00
true
install: bin/hub man-pages
bash < script/install.sh
2016-01-25 07:57:22 +03:00
clean:
2017-05-17 14:03:06 +03:00
git clean -fdx bin share/man
.PHONY: clean test test-all man-pages fmt install