112
|
1 # Makefile for the XEmacs Internals Manual.
|
|
2
|
|
3 # This file is part of XEmacs.
|
|
4
|
|
5 # XEmacs is free software; you can redistribute it and/or modify it
|
|
6 # under the terms of the GNU General Public License as published by the
|
|
7 # Free Software Foundation; either version 2, or (at your option) any
|
|
8 # later version.
|
|
9
|
|
10 # XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
13 # for more details.
|
|
14
|
|
15 # You should have received a copy of the GNU General Public License
|
|
16 # along with XEmacs; see the file COPYING. If not, write to
|
|
17 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
18 # Boston, MA 02111-1307, USA.
|
|
19
|
|
20 VERSION=1.0
|
|
21 NAME=gnats
|
|
22
|
|
23 # Uncomment this line for permuted index.
|
|
24 # permuted_index = 1
|
|
25
|
|
26 # List of all the texinfo files in the manual:
|
|
27
|
|
28 srcs = categ.texi fields.texi flowchart.txt gnats.texi p-admin.texi \
|
|
29 p-inst.texi p-usage.texi s-usage.texi send-pr.texi states.text \
|
|
30 version.texi
|
|
31
|
|
32 gnats_srcs = flowchart.txt gnats.texi p-admin.texi p-inst.texi \
|
|
33 p-usage.texi version.texi
|
|
34
|
|
35 send_pr_srcs = categ.texi fields.texi s-usage.texi send-pr.texi states.texi \
|
|
36 version.texi
|
|
37
|
|
38 all : info
|
|
39 info : ../../info/$(NAME).info ../../info/send-pr.info
|
|
40
|
|
41 ../../info/$(NAME).info: ${gnats_srcs}
|
|
42 ${MAKEINFO} $(NAME).texi -o ../../info/${NAME}.info
|
|
43
|
|
44 ../../info/send-pr.info: ${seend_pr_srcs}
|
|
45 ${MAKEINFO} send-pr.texi -o ../../info/send-pr.info
|
|
46
|
|
47 dvi : $(NAME).dvi send-pr.dvi
|
|
48
|
|
49 $(NAME).dvi: $(srcs) index.texi
|
|
50 texi2dvi gnats.texi
|
|
51 texi2dvi send-pr.texi
|
|
52
|
|
53 mostlyclean:
|
|
54 rm -f *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \
|
|
55 *.vr *.vrs *.pg *.pgs *.ky *.kys
|
|
56 clean: mostlyclean
|
|
57 rm -f *.dvi *.ps make.out core index.texi
|
|
58 distclean: clean
|
|
59 realclean: clean
|
|
60 extraclean: clean
|
|
61 -rm -f *~ \#*
|