mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-07 11:41:16 +02:00
zsh-workers/9798
This commit is contained in:
parent
6ad3885077
commit
9063cd0d55
1 changed files with 34 additions and 14 deletions
|
@ -51,7 +51,7 @@ zshoptions.1 zshparam.1 zshzftpsys.1 zshzle.1 zshall.1
|
|||
|
||||
# yodl documentation
|
||||
|
||||
YODLDOC = $(MAN) zsh.texi
|
||||
YODLDOC = $(MAN) texi
|
||||
|
||||
MODDOCSRC = \
|
||||
Zsh/mod_cap.yo Zsh/mod_clone.yo \
|
||||
|
@ -73,22 +73,27 @@ Zsh/seealso.yo Zsh/zftpsys.yo Zsh/zle.yo
|
|||
|
||||
# ========== DEPENDENCIES FOR BUILDING ==========
|
||||
|
||||
all: $(MAN) zsh.texi ../META-FAQ
|
||||
all: man texi ../META-FAQ
|
||||
.PHONY: all
|
||||
|
||||
everything: all zsh.dvi zsh_us.ps zsh_a4.ps zsh_toc.html
|
||||
everything: all dvi ps html
|
||||
.PHONY: everything
|
||||
|
||||
dvi: zsh.dvi
|
||||
.PHONY: dvi
|
||||
|
||||
zsh.dvi: $(sdir)/zsh.texi
|
||||
$(TEXI2DVI) $(sdir)/zsh.texi
|
||||
|
||||
zsh.texi $(sdir)/zsh.texi:
|
||||
case $@ in \
|
||||
*/*) target=$@ ;; \
|
||||
*) target=$(sdir)/$@ ;; \
|
||||
esac; \
|
||||
$(YODL) -o $$target -I$(sdir) -w ztexi.yo version.yo zsh.yo; \
|
||||
test -f $$target
|
||||
texi: $(sdir)/zsh.texi
|
||||
.PHONY: texi
|
||||
|
||||