# Makefile for the   GNU Emacs Lisp Reference Manual.
#
# based on FSF Makefile, 11 August 1990
# Modified by Ben Wing, February 1994

# Redefine `TEX' if `tex' does not invoke plain TeX. For example:
# TEX=platex

TEX=tex

# Where the TeX macros are kept:
texmacrodir = /usr/local/lib/tex/macros

# Where the Emacs hierarchy lives ($EMACS in the INSTALL document for Emacs.)
# For example: 
# emacslibdir = /usr/local/gnu/lib/emacs

# Directory where Emacs is installed, by default:
emacslibdir = /usr/local/emacs

# Unless you have a nonstandard Emacs installation, these shouldn't have to 
# be changed.
prefix = /usr/local
infodir = ${prefix}/info

# The name of the manual:

VERSION=2.02.2
NAME=lispref

# Uncomment this line for permuted index.
# permuted_index = 1 

# List of all the texinfo files in the manual:

srcs = abbrevs.texi annotations.texi anti.texi back.texi backups.texi \
  buffers.texi commands.texi compile.texi control.texi debugging.texi \
  devices.texi dialog.texi display.texi edebug-inc.texi edebug.texi \
  errors.texi eval.texi extents.texi faces.texi files.texi frames.texi \
  functions.texi glyphs.texi help.texi hooks.texi index.texi internals.texi \
  internationalization.texi intro.texi keymaps.texi lispref.texi lists.texi \
  loading.texi locals.texi macros.texi maps.texi markers.texi menus.texi \
  minibuf.texi modes.texi mouse.texi numbers.texi objects.texi os.texi \
  positions.texi processes.texi searching.texi sequences.texi \
  specifiers.texi streams.texi strings.texi symbols.texi syntax.texi \
  text.texi tips.texi toolbar.texi tooltalk.texi variables.texi \
  windows.texi x-windows.texi index.unperm index.perm

all: ../../info/$(NAME).info

$(NAME).dvi: $(srcs) index.texi ../texindex
	# Avoid losing old contents of aux file entirely.
	-mv $(NAME).aux $(NAME).oaux
	# First shot to define xrefs:
	$(TEX) $(NAME).texi
	if [ a${permuted_index} != a ]; \
	then \
	  ./permute-index; \
	  mv permuted.fns $(NAME).fns; \
	else \
	  ../texindex $(NAME).??; \
	fi
	$(TEX) $(NAME).texi

index.texi:
	if [ a${permuted_index} != a ]; \
	then \
	  ln -s index.perm index.texi; \
	else \
	  ln -s index.unperm index.texi; \
	fi

../../info/$(NAME).info: $(srcs) index.texi ../makeinfo
	../makeinfo $(NAME).texi

mostlyclean:
	rm -f *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \
              *.vr *.vrs *.pg *.pgs *.ky *.kys

clean: mostlyclean
	rm -f *.dvi *.ps
	rm -f make.out core 
	rm -f index.texi

distclean: clean
realclean: distclean
extraclean: distclean
	-rm -f *~ \#*

../texindex:
	(cd ..; make texindex)

../makeinfo:
	(cd ..; make makeinfo)
