3 # Copyright (C) 1994-1999, 2001-2013 Free Software Foundation, Inc.
5 # This file is part of GNU Emacs.
7 # GNU Emacs is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # GNU Emacs is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22 # NB If you add any more configure variables,
23 # update the sed rules in the dist target below.
27 buildinfodir
= $(srcdir)/..
/..
/info
28 # Directory with the (customized) texinfo.tex file.
29 texinfodir
= $(srcdir)/..
/misc
30 # Directory with emacsver.texi.
31 emacsdir
= $(srcdir)/..
/emacs
34 datarootdir
= @datarootdir@
36 PACKAGE_TARNAME
= @PACKAGE_TARNAME@
45 GZIP_PROG
= @GZIP_PROG@
47 HTML_OPTS
= --no-split
--html
50 # Options used only when making info output.
54 INSTALL_DATA
= @INSTALL_DATA@
57 MAKEINFO_OPTS
= --force -I
$(emacsdir
) -I
$(srcdir)
62 ENVADD
= TEXINPUTS
="$(srcdir):$(texinfodir):$(emacsdir):$(TEXINPUTS)" \
63 MAKEINFO
="$(MAKEINFO) $(MAKEINFO_OPTS)"
65 DVI_TARGETS
= emacs-lisp-intro.
dvi
66 HTML_TARGETS
= emacs-lisp-intro.html
67 PDF_TARGETS
= emacs-lisp-intro.pdf
68 PS_TARGETS
= emacs-lisp-intro.ps
70 mkinfodir
= @
${MKDIR_P} ${buildinfodir}
72 srcs
= ${srcdir}/emacs-lisp-intro.texi
${srcdir}/doclicense.texi \
73 ${emacsdir}/emacsver.texi
75 .PHONY
: info dvi html pdf ps
82 info: ${buildinfodir}/eintr
$(INFO_EXT
)
89 # The file name eintr must fit within 5 characters, to allow for
90 # -NN extensions to fit into DOS 8+3 limits without clashing.
91 # Note: "<" is not portable in ordinary make rules.
92 ${buildinfodir}/eintr
$(INFO_EXT
): ${srcs}
94 $(MAKEINFO
) $(MAKEINFO_OPTS
) $(INFO_OPTS
) -o
$@
${srcdir}/emacs-lisp-intro.texi
96 emacs-lisp-intro.
dvi: ${srcs}
97 $(ENVADD
) $(TEXI2DVI
) ${srcdir}/emacs-lisp-intro.texi
99 emacs-lisp-intro.pdf
: ${srcs}
100 $(ENVADD
) $(TEXI2PDF
) ${srcdir}/emacs-lisp-intro.texi
102 emacs-lisp-intro.html
: ${srcs}
103 $(MAKEINFO
) $(MAKEINFO_OPTS
) $(HTML_OPTS
) -o
$@
${srcdir}/emacs-lisp-intro.texi
105 .PHONY
: mostlyclean clean distclean maintainer-clean infoclean
108 rm -f
*.aux
*.log
*.toc
*.cp
*.cps
*.fn
*.fns
*.ky
*.kys \
109 *.op
*.ops
*.pg
*.pgs
*.tp
*.tps
*.vr
*.vrs
112 rm -f
$(DVI_TARGETS
) $(HTML_TARGETS
) $(PDF_TARGETS
) $(PS_TARGETS
)
113 rm -f emacs-lispintro-
${version}.
tar*
118 -cd
$(buildinfodir
) && rm -f eintr
$(INFO_EXT
) eintr
$(INFO_EXT
)-[1-9]
120 maintainer-clean
: distclean infoclean
125 rm -rf emacs-lispintro-
${version}
126 mkdir emacs-lispintro-
${version}
127 cp
${srcdir}/*.texi
${srcdir}/*.eps
${srcdir}/*.pdf \
128 ${texinfodir}/texinfo.
tex ${emacsdir}/emacsver.texi \
129 ${srcdir}/ChangeLog
* ${srcdir}/README emacs-lispintro-
${version}/
130 sed
-e
's/@sr[c]dir@/./' -e
's/^\(texinfodir *=\).*/\1 ./' \
131 -e
's/^\(emacsdir *=\).*/\1 ./' \
132 -e
's/^\(buildinfodir *=\).*/\1 ./' \
133 -e
's/^\(clean:.*\)/\1 infoclean/' \
134 -e
"s/@ver[s]ion@/${version}/" \
135 -e
's/@MAKE[I]NFO@/makeinfo/' -e
's/@MK[D]IR_P@/mkdir -p/' \
136 -e
's/@IN[F]O_EXT@/.info/' -e
's/@IN[F]O_OPTS@//' \
137 ${srcdir}/Makefile.in
> emacs-lispintro-
${version}/Makefile
138 @if grep
'@[a-zA-Z_]*@' emacs-lispintro-
${version}/Makefile
; then \
139 echo
"Unexpanded configure variables in Makefile?" 1>&2; exit
1; \
141 tar -cf emacs-lispintro-
${version}.
tar emacs-lispintro-
${version}
142 rm -rf emacs-lispintro-
${version}
145 .PHONY
: install-dvi install-html install-pdf install-ps install-doc
148 umask
022; $(MKDIR_P
) $(DESTDIR
)$(dvidir
)
149 $(INSTALL_DATA
) $(DVI_TARGETS
) $(DESTDIR
)$(dvidir
)
151 umask
022; $(MKDIR_P
) $(DESTDIR
)$(htmldir
)
152 $(INSTALL_DATA
) $(HTML_TARGETS
) $(DESTDIR
)$(htmldir
)
154 umask
022;$(MKDIR_P
) $(DESTDIR
)$(pdfdir
)
155 $(INSTALL_DATA
) $(PDF_TARGETS
) $(DESTDIR
)$(pdfdir
)
157 umask
022; $(MKDIR_P
) $(DESTDIR
)$(psdir
)
158 for file in
$(PS_TARGETS
); do \
159 $(INSTALL_DATA
) $${file} $(DESTDIR
)$(psdir
); \
160 [ -n
"${GZIP_PROG}" ] || continue
; \
161 rm -f
$(DESTDIR
)$(psdir
)/$${file}.gz
; \
162 ${GZIP_PROG} -9n
$(DESTDIR
)$(psdir
)/$${file}; \
165 ## Top-level Makefile installs the info pages.
166 install-doc
: install-dvi install-html install-pdf install-ps
169 .PHONY
: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps uninstall-doc
172 for file in
$(DVI_TARGETS
); do \
173 rm -f
$(DESTDIR
)$(dvidir
)/$${file}; \
176 for file in
$(HTML_TARGETS
); do \
177 rm -f
$(DESTDIR
)$(htmldir
)/$${file}; \
180 ext
= ; [ -n
"${GZIP_PROG}" ] && ext
=.gz
; \
181 for file in
$(PS_TARGETS
); do \
182 rm -f
$(DESTDIR
)$(psdir
)/$${file}$${ext}; \
185 for file in
$(PDF_TARGETS
); do \
186 rm -f
$(DESTDIR
)$(pdfdir
)/$${file}; \
189 uninstall-doc
: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps
192 ### Makefile ends here