1 # Makefile for the GNU Emacs Lisp Reference Manual.
5 # Redefine `TEX' if `tex' does not invoke plain TeX. For example:
10 # Where the TeX macros are kept:
11 texmacrodir
= /usr
/local
/lib
/tex/macros
13 # Where the Emacs hierarchy lives ($EMACS in the INSTALL document for Emacs.)
15 # emacslibdir = /usr/local/gnu/lib/emacs
17 # Directory where Emacs is installed, by default:
18 emacslibdir
= /usr
/local
/emacs
20 # Unless you have a nonstandard Emacs installation, these shouldn't have to
23 infodir = ${prefix}/info
25 # The name of the manual:
28 manual
= elisp-manual-19-
$(VERSION
)
30 # Uncomment this line for permuted index.
33 # List of all the texinfo files in the manual:
35 srcs
= elisp.texi back.texi \
36 abbrevs.texi anti.texi backups.texi locals.texi buffers.texi \
37 calendar.texi commands.texi compile.texi control.texi debugging.texi \
38 display.texi edebug.texi errors.texi eval.texi files.texi \
39 frames.texi functions.texi help.texi hooks.texi \
40 internals.texi intro.texi keymaps.texi lists.texi \
41 loading.texi macros.texi maps.texi markers.texi \
42 minibuf.texi modes.texi numbers.texi objects.texi \
43 os.texi positions.texi processes.texi searching.texi \
44 sequences.texi streams.texi strings.texi symbols.texi \
45 syntax.texi text.texi tips.texi variables.texi \
47 index.unperm index.perm
49 .PHONY
: elisp.
dvi clean
51 elisp.
dvi: $(srcs
) index.texi texindex
52 # Avoid losing old contents of aux file entirely.
53 -mv elisp.aux elisp.oaux
54 # First shot to define xrefs:
56 if
[ a
${permuted_index} != a
]; \
59 mv permuted.fns elisp.fns
; \
61 .
/texindex elisp.??
; \
66 if
[ a
${permuted_index} != a
]; \
68 ln
-s index.perm index.texi
; \
70 ln
-s index.unperm index.texi
; \
73 # The info file is named `elisp'.
75 elisp
: $(srcs
) index.texi
makeinfo
78 install: elisp elisp.
dvi
79 mv elisp elisp-
* $(infodir)
80 @echo also add the line for elisp to
$(infodir)/dir.
83 install -c texinfo.
tex $(texmacrodir
)
86 rm -f
*.toc
*.aux
*.log
*.cp
*.cps
*.fn
*.fns
*.tp
*.tps \
87 *.vr
*.vrs
*.pg
*.pgs
*.ky
*.kys
89 rm -f
makeinfo.o
makeinfo getopt.o getopt1.o
90 rm -f texindex.o texindex index.texi
95 -ln README Makefile permute-index
$(srcs
) \
96 texinfo.
tex getopt.c getopt1.c getopt.h \
97 elisp.
dvi elisp.aux elisp.??s elisp elisp-
[0-9] elisp-
[0-9][0-9] temp
/$(manual
)
98 -rm -f temp
/$(manual
)/texindex.c temp
/$(manual
)/makeinfo.c
99 cp texindex.c
makeinfo.c temp
/$(manual
)
100 (cd temp
/$(manual
); rm -f
*~
)
101 (cd temp
; tar chf
- $(manual
)) | gzip
> $(manual
).
tar.gz
104 # Make two programs used in generating output from texinfo.
109 $(CC
) -o
$@
$(LDFLAGS
) $(CFLAGS
) $?
110 texindex.o
: texindex.c
114 MAKEINFO_FLAGS
= -DMAKEINFO_MAJOR
=$(MAKEINFO_MAJOR
) -DMAKEINFO_MINOR
=$(MAKEINFO_MINOR
)
116 makeinfo: makeinfo.o getopt.o getopt1.o
117 $(CC
) $(LDFLAGS
) -o
makeinfo makeinfo.o getopt.o getopt1.o
119 makeinfo.o
: makeinfo.c
120 $(CC
) -c
$(CFLAGS
) $(MAKEINFO_FLAGS
) makeinfo.c