forked from ungleich-public/ccollect
Ignore texi/fo
This commit is contained in:
parent
96d5ab1b3b
commit
6bd8393d3d
2 changed files with 7 additions and 8 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -13,3 +13,5 @@ test/*
|
||||||
doc/man/*.[0-9]
|
doc/man/*.[0-9]
|
||||||
doc/*.xml
|
doc/*.xml
|
||||||
doc/*/*.xml
|
doc/*/*.xml
|
||||||
|
*.texi
|
||||||
|
*.fo
|
||||||
|
|
13
Makefile
13
Makefile
|
@ -53,7 +53,7 @@ TEXIDOCS =
|
||||||
PDFDOCS = ${DOCS:.text=.pdf}
|
PDFDOCS = ${DOCS:.text=.pdf}
|
||||||
PDFDOCS =
|
PDFDOCS =
|
||||||
|
|
||||||
MANPDOCS = ${MANDOCS:.text=.man}
|
MANPDOCS = ${MANDOCS:.text=.1}
|
||||||
|
|
||||||
DOCBDOCS = ${DOCS:.text=.docbook}
|
DOCBDOCS = ${DOCS:.text=.docbook}
|
||||||
|
|
||||||
|
@ -116,7 +116,8 @@ install-manlink: install-man
|
||||||
#%.man: %.mandocbook
|
#%.man: %.mandocbook
|
||||||
# ${DOCBOOKTOMAN} --to-stdout $< > $@
|
# ${DOCBOOKTOMAN} --to-stdout $< > $@
|
||||||
|
|
||||||
%.man: %.text
|
#%.man: %.text
|
||||||
|
%.1: %.text
|
||||||
${A2X} -f manpage $<
|
${A2X} -f manpage $<
|
||||||
|
|
||||||
%.pdf: %.text
|
%.pdf: %.text
|
||||||
|
@ -127,11 +128,7 @@ install-manlink: install-man
|
||||||
# Developer targets
|
# Developer targets
|
||||||
#
|
#
|
||||||
update:
|
update:
|
||||||
@cg-update home
|
@git push
|
||||||
|
|
||||||
push-work:
|
|
||||||
@cg-push home
|
|
||||||
@cg-push sygroup
|
|
||||||
|
|
||||||
publish-doc: documentation
|
publish-doc: documentation
|
||||||
@echo "Transferring files to ${host}"
|
@echo "Transferring files to ${host}"
|
||||||
|
@ -143,7 +140,7 @@ publish-doc: documentation
|
||||||
#
|
#
|
||||||
clean:
|
clean:
|
||||||
rm -f ${DOC_ALL}
|
rm -f ${DOC_ALL}
|
||||||
rm -f doc/man/*.[0-9] doc/man/*.xml
|
rm -f doc/man/*.[0-9] doc/man/*.xml doc/*.fo doc/man/*.fo
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f ${DOCBDOCS}
|
rm -f ${DOCBDOCS}
|
||||||
|
|
Loading…
Reference in a new issue