summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8cdf569)
raw | patch | inline | side by side (parent: 8cdf569)
author | Jonas Fonseca <fonseca@diku.dk> | |
Thu, 31 May 2007 09:25:49 +0000 (11:25 +0200) | ||
committer | Jonas Fonseca <fonseca@diku.dk> | |
Thu, 31 May 2007 09:42:03 +0000 (11:42 +0200) |
Makefile | patch | blob | history |
diff --git a/Makefile b/Makefile
index ad01d12b8da73317cc3424c02bf2c4873ee94924..f5c7a9337c58dfd9f7f3c71f7f21b1bbb70d0964 100644 (file)
--- a/Makefile
+++ b/Makefile
PROGS = tig
DOCS_MAN = tig.1 tigrc.5
DOCS_HTML = tig.1.html tigrc.5.html \
- manual.html manual.html-chunked \
+ manual.html \
README.html
DOCS = $(DOCS_MAN) $(DOCS_HTML) \
- manual.toc manual.pdf
+ manual.toc manual.html-chunked manual.pdf
TARNAME = tig-$(RPM_VERSION)
rpm: dist
rpmbuild -ta $(TARNAME).tar.gz
+# Maintainer stuff
+sync-docs:
+ git checkout release && \
+ git merge master && \
+ make clean doc-man doc-html && \
+ git add $(DOCS_MAN) $(DOCS_HTML) && \
+ git commit -m "Sync docs" && \
+ git checkout master
+
.PHONY: all all-debug doc doc-man doc-html install install-doc install-doc-man install-doc-html clean spell-check dist rpm
tig.spec: tig.spec.in
%.html-chunked : %.xml
xmlto html -o $@ $<
-
-# Maintainer stuff
-sync-docs:
- cg switch release
- -cg merge -n master
- cg commit -m "Merge with master"
- make doc
- cg commit -m "Sync docs"
- cg switch master