This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/docs/Makefile
vsc e5f4633c39 This commit was generated by cvs2svn to compensate for changes in r4,
which included commits to RCS files with non-trunk default branches.


git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@5 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2001-04-09 19:54:03 +00:00

47 lines
755 B
Makefile

#
# generate documentation files for YAP
#
MAKEINFO=makeinfo
TEXI2DVI=texi2dvi
TEXI2HTML=texi2html
TEXI2PDF=texi2pdf
all: info html ps pdf
install-info:
$(MAKEINFO) $(MAKEINFOFLAGS) -I $(srcdir) -o $(INFODIR)/yap.info $(srcdir)/Documentation/yap.tex
info: yap.info
yap.info: yap.tex
$(MAKEINFO) yap.tex
html: yap.html
yap.html: yap.tex
$(TEXI2HTML) yap.tex
dvi: yap.dvi
yap.dvi: yap.tex
$(TEXI2DVI) yap.tex
ps: yap.ps
yap.ps: yap.dvi
dvips -o yap.ps yap
pdf: yap.pdf
yap.pdf: yap.tex
$(TEXI2PDF) yap.tex
clean:
rm -f *.aux *.ca *.cas *.cn *.cns *.cp *.cps *.cy *.cys *.dvi *.fn *.fns *.ky *.log *.sa *.sas *.sn *.sns *.sy *.sys *~ *.tp *.vr *.toc *.pg
realclean:
-@make clean
rm -f yap.ps yap.html yap_toc.html yap.pdf yap.info*