hub/Makefile

71 строка
1.6 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 = \
2016-08-21 14:51:14 +03:00
share/man/man1/hub-alias.1 \
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-fork.1 \
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
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
2016-08-21 14:51:14 +03:00
bin/ronn --organization=GITHUB --manual="Hub Manual" share/man/man1/*.ronn
2016-01-25 07:57:22 +03:00
%.1.ronn: bin/hub
bin/hub help $(*F) --plain-text | script/format-ronn $(*F) $@
2016-08-21 14:51:14 +03:00
share/man/man1/hub.1.ronn:
2016-01-25 07:57:22 +03:00
true
clean:
rm -rf bin/hub
2016-08-21 14:51:14 +03:00
git clean -fdx share/man