Mercurial > hg > xemacs-beta
comparison man/auctex/Makefile @ 24:4103f0995bd7 r19-15b95
Import from CVS: tag r19-15b95
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:51:03 +0200 |
parents | |
children | 441bb1e64a06 |
comparison
equal
deleted
inserted
replaced
23:0edd3412f124 | 24:4103f0995bd7 |
---|---|
1 | |
2 infodir=../../info | |
3 TEX=tex | |
4 | |
5 info: $(infodir)/auctex.info | |
6 | |
7 $(infodir)/auctex.info: auc-tex.texi install.texi intro.texi changes.texi | |
8 makeinfo auc-tex.texi -o $(infodir)/auctex.info | |
9 | |
10 all: auc-tex.dvi tex-ref.dvi math-ref.dvi auctex | |
11 | |
12 dist: auctex INSTALLATION README CHANGES auc-tex_toc.html auc-tex.ps | |
13 | |
14 auc-tex_toc.html: auc-tex.texi | |
15 texi2html -split_node auc-tex.texi | |
16 | |
17 math-ref.dvi: math-ref.tex | |
18 $(TEX) math-ref | |
19 @echo "**********************************************************" | |
20 @echo "** doc/math-ref.dvi may now be printed (1 page)" | |
21 @echo "**********************************************************" | |
22 | |
23 tex-ref.dvi: tex-ref.tex | |
24 $(TEX) tex-ref | |
25 @echo "**********************************************************" | |
26 @echo "** doc/tex-ref.dvi may now be printed (1 page)" | |
27 @echo "**********************************************************" | |
28 | |
29 auc-tex.dvi: auc-tex.texi | |
30 -$(TEX) "\nonstopmode\input auc-tex.texi" | |
31 -texindex auc-tex.ky | |
32 -texindex auc-tex.fn | |
33 -texindex auc-tex.vr | |
34 -texindex auc-tex.cp | |
35 -$(TEX) "\nonstopmode\input auc-tex.texi" | |
36 @echo "**********************************************************" | |
37 @echo "** If this gave trouble, maybe you need to install" | |
38 @echo "** a newer version of texinfo?" | |
39 @echo "** doc/auc-tex.dvi may now be printed (70+ pages)" | |
40 @echo "**********************************************************" | |
41 | |
42 auc-tex.ps: auc-tex.dvi | |
43 dvips auc-tex.dvi > auc-tex.ps | |
44 | |
45 auctex: auc-tex.texi install.texi intro.texi changes.texi | |
46 -makeinfo auc-tex.texi | |
47 @echo "**********************************************************" | |
48 @echo "** If this gave trouble, maybe you need to install" | |
49 @echo "** a newer version of texinfo?" | |
50 @echo "**********************************************************" | |
51 | |
52 INSTALLATION: install.texi | |
53 -makeinfo --no-headers install.texi --output INSTALLATION | |
54 | |
55 README: intro.texi | |
56 -makeinfo --no-headers intro.texi --output README | |
57 | |
58 CHANGES: changes.texi | |
59 -makeinfo --no-headers changes.texi --output CHANGES | |
60 | |
61 HISTORY: history.texi | |
62 -makeinfo --no-headers history.texi --output HISTORY | |
63 | |
64 install: auctex | |
65 cp auctex auctex-* $(infodir) | |
66 @echo "**********************************************************" | |
67 @echo "** The \`auctex' info files are now installed." | |
68 @echo "** Edit \`$(infodir)/dir'" | |
69 @echo "** to add an entry for file \`auctex'" | |
70 @echo "**********************************************************" | |
71 | |
72 clean: allways | |
73 rm -f *.dvi *.ps *.aux *.cp *.fn *.info *.ky *.log *~ \#*\# *.tp *.vr *.pg *.toc *.tp *.bak *.cps *.kys *.tps *.fns *.vrs *.pgs auctex auctex-? *.html INSTALLATION README CHANGES | |
74 | |
75 | |
76 allways: |