annotate man/xemacs/Makefile @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 4b173ad71786
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 # Makefile for the XEmacs Reference Manual.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 # based on FSF Makefile, 11 August 1990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 # Modified by Ben Wing, February 1994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 # Redefine `TEX' if `tex' does not invoke plain TeX. For example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 # TEX=platex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 TEX=tex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 # Where the TeX macros are kept:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 texmacrodir = /usr/local/lib/tex/macros
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 # Where the Emacs hierarchy lives ($EMACS in the INSTALL document for Emacs.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 # For example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 # emacslibdir = /usr/local/gnu/lib/emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 # Directory where Emacs is installed, by default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 emacslibdir = /usr/local/emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 # Unless you have a nonstandard Emacs installation, these shouldn't have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 # be changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 prefix = /usr/local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 infodir = ${prefix}/info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 # The name of the manual:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 NAME=xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 # List of all the texinfo files in the manual:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 srcs = xemacs.texi abbrevs.texi basic.texi buffers.texi building.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 calendar.texi cmdargs.texi custom.texi display.texi entering.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 files.texi fixit.texi glossary.texi gnu.texi help.texi indent.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 keystrokes.texi killing.texi xemacs.texi m-x.texi major.texi mark.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 menus.texi mini.texi misc.texi mouse.texi new.texi picture.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 programs.texi reading.texi regs.texi frame.texi search.texi sending.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 text.texi trouble.texi undo.texi windows.texi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 all: ../../info/$(NAME).info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 $(NAME).dvi: $(srcs) ../texindex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 # Avoid losing old contents of aux file entirely.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 -mv $(NAME).aux $(NAME).oaux
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 # First shot to define xrefs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 $(TEX) $(NAME).texi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ../texindex $(NAME).??
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 $(TEX) $(NAME).texi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ../../info/$(NAME).info: $(srcs) ../makeinfo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ../makeinfo $(NAME).texi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 mostlyclean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 rm -f *.toc *.aux *.oaux *.log *.cp *.cps *.fn *.fns *.tp *.tps \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 *.vr *.vrs *.pg *.pgs *.ky *.kys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 clean: mostlyclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 rm -f *.dvi *.ps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 rm -f make.out core
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 distclean: clean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 realclean: distclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 extraclean: distclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 -rm -f *~ \#*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 ../texindex:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (cd ..; make texindex)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ../makeinfo:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (cd ..; make makeinfo)