]> code.delx.au - gnu-emacs/blobdiff - lispintro/Makefile.in
(custom-add-parent-links): New arg DOC-INITIAL-STRING.
[gnu-emacs] / lispintro / Makefile.in
index 14c1b1c9ab906438baca2fc4203dd3b449e890a4..fc263c2095cc3d8339c8f6ade991e36c3a4720bf 100644 (file)
@@ -1,12 +1,13 @@
 #### Makefile for the Emacs Lisp Introduction manual
 
-# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002,
+#   2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 
 # This file is part of GNU Emacs.
 
 # GNU Emacs is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
 # any later version.
 
 # GNU Emacs is distributed in the hope that it will be useful,
 
 # You should have received a copy of the GNU General Public License
 # along with GNU Emacs; see the file COPYING.  If not, write to
-# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
+# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
 
 SHELL = @SHELL@
 
 srcdir = @srcdir@
 VPATH = @srcdir@
 
-infodir = ${srcdir}/../info
+infodir = ../info
+usermanualdir = $(srcdir)/../man
 
 INFO_SOURCES = ${srcdir}/emacs-lisp-intro.texi
 # The file name eintr must fit within 5 characters, to allow for
@@ -35,7 +37,6 @@ DVI_TARGETS = emacs-lisp-intro.dvi
 MAKEINFO = makeinfo
 TEXI2DVI = texi2dvi
 DVIPS = dvips
-ENVADD = TEXINPUTS="$(srcdir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)"
 
 .SUFFIXES: .dvi .ps .texi
 
@@ -44,10 +45,10 @@ info: $(INFO_TARGETS)
 dvi: $(DVI_TARGETS)
 
 ${infodir}/eintr: ${INFO_SOURCES}
-       $(MAKEINFO) -o $@ $(srcdir)/emacs-lisp-intro.texi
+       cd $(srcdir); $(MAKEINFO) emacs-lisp-intro.texi -o $(infodir)/eintr
 
 emacs-lisp-intro.dvi: ${INFO_SOURCES}
-       $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi
+       $(TEXI2DVI) -I $(srcdir) -I $(usermanualdir) $(srcdir)/emacs-lisp-intro.texi
 
 emacs-lisp-intro.html: $(INFO_SOURCES)
        $(MAKEINFO) --html -o $@ $(srcdir)/emacs-lisp-intro.texi
@@ -69,5 +70,3 @@ maintainer-clean: distclean
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
 .NOEXPORT:
-
-# arch-tag: eb660994-cd29-4ab8-8043-5042e2dbde84