hub/Makefile

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

2016-01-25 07:57:22 +03:00
SOURCES = $(shell script/build files)
2016-01-25 09:14:05 +03:00
SOURCES_FMT = $(shell script/build files | cut -d/ -f1-2 | sort -u)
2016-01-25 07:57:22 +03:00
HELP_CMD = \
man/hub-alias.1 \
man/hub-browse.1 \
man/hub-ci-status.1 \
man/hub-compare.1 \
man/hub-create.1 \
man/hub-fork.1 \
man/hub-pull-request.1 \
2016-01-30 13:43:00 +03:00
man/hub-release.1 \
2016-01-25 07:57:22 +03:00
HELP_EXT = \
man/hub-am.1 \
man/hub-apply.1 \
man/hub-checkout.1 \
man/hub-cherry-pick.1 \
man/hub-clone.1 \
man/hub-fetch.1 \
2016-01-25 14:32:00 +03:00
man/hub-help.1 \
2016-01-25 07:57:22 +03:00
man/hub-init.1 \
man/hub-merge.1 \
man/hub-push.1 \
man/hub-remote.1 \
man/hub-submodule.1 \
HELP_ALL = man/hub.1 $(HELP_CMD) $(HELP_EXT)
TEXT_WIDTH = 87
2016-01-25 09:14:05 +03:00
.PHONY: clean test test-all man-pages fmt
2016-01-25 07:57:22 +03:00
all: bin/hub
bin/hub: $(SOURCES)
script/build -o $@
test:
script/build test
test-all: bin/cucumber
script/test
bin/ronn bin/cucumber:
script/bootstrap
2016-01-25 09:14:05 +03:00
fmt:
go fmt $(filter %.go,$(SOURCES_FMT))
go fmt $(filter-out %.go,$(SOURCES_FMT))
2016-01-25 07:57:22 +03:00
man-pages: $(HELP_ALL:=.ronn) $(HELP_ALL) $(HELP_ALL:=.txt)
%.txt: %.ronn
groff -Wall -mtty-char -mandoc -Tutf8 -rLL=$(TEXT_WIDTH)n $< | col -b >$@
%.1: %.1.ronn bin/ronn
bin/ronn --organization=GITHUB --manual="Hub Manual" man/*.ronn
%.1.ronn: bin/hub
bin/hub help $(*F) --plain-text | script/format-ronn $(*F) $@
man/hub.1.ronn:
true
clean:
rm -rf bin/hub
git clean -fdx man/