root/trunk/Makefile.in

Revision 4220, 30.1 kB (checked in by miyoshi, 3 months ago)

Sync up with Emacs22.2.

Line 
1 # DIST: This is the distribution Makefile for Emacs.  configure can
2 # DIST: make most of the changes to this file you might want, so try
3 # DIST: that first.
4
5 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
6 #   2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
7 #   Free Software Foundation, Inc.
8
9 # This file is part of GNU Emacs.
10
11 # GNU Emacs is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3, or (at your option)
14 # any later version.
15
16 # GNU Emacs is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20
21 # You should have received a copy of the GNU General Public License
22 # along with GNU Emacs; see the file COPYING.  If not, write to
23 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 # Boston, MA 02110-1301, USA.
25
26 # make all      to compile and build Emacs.
27 # make install  to install it.
28 # make TAGS     to update tags tables.
29 #
30 # make clean  or  make mostlyclean
31 #      Delete all files from the current directory that are normally
32 #      created by building the program.  Don't delete the files that
33 #      record the configuration.  Also preserve files that could be made
34 #      by building, but normally aren't because the distribution comes
35 #      with them.
36 #
37 #      Delete `.dvi' files here if they are not part of the distribution.
38 #
39 # make distclean
40 #      Delete all files from the current directory that are created by
41 #      configuring or building the program.  If you have unpacked the
42 #      source and built the program without creating any other files,
43 #      `make distclean' should leave only the files that were in the
44 #      distribution.
45 #
46 # make maintainer-clean
47 #      Delete everything from the current directory that can be
48 #      reconstructed with this Makefile.  This typically includes
49 #      everything deleted by distclean, plus more: .elc files,
50 #      C source files produced by Bison, tags tables, info files,
51 #      and so on.
52 #
53 # make extraclean
54 #      Still more severe - delete backup and autosave files, too.
55 #
56 # make bootstrap
57 #      Recompiles all the Emacs Lisp files using the latest source,
58 #      then rebuilds Emacs.
59 #
60 # make bootfast
61 #      Recompiles changed Emacs Lisp files using the latest C source,
62 #      then rebuilds Emacs.  This is faster than `make bootstrap'
63 #      but once in a while an old .elc file can cause trouble.
64
65 SHELL = /bin/sh
66
67 # This may not work with certain non-GNU make's.  It only matters when
68 # inheriting a CDPATH not starting with the current directory.
69 CDPATH=
70
71 # If Make doesn't predefine MAKE, set it here.
72 @SET_MAKE@
73
74 # ==================== Things `configure' Might Edit ====================
75
76 CC=@CC@
77 CPP=@CPP@
78 C_SWITCH_SYSTEM=@c_switch_system@
79 ALLOCA=@ALLOCA@
80 LN_S=@LN_S@
81 CFLAGS=@CFLAGS@
82 LDFLAGS=@LDFLAGS@
83 CPPFLAGS=@CPPFLAGS@
84 C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
85 LD_SWITCH_X_SITE=@LD_SWITCH_X_SITE@
86 EXEEXT=@EXEEXT@
87
88 ### These help us choose version- and architecture-specific directories
89 ### to install files in.
90
91 ### This should be the number of the Emacs version we're building,
92 ### like `18.59' or `19.0'.
93 version=@version@
94
95 ### This should be the name of the configuration we're building Emacs
96 ### for, like `mips-dec-ultrix' or `sparc-sun-sunos'.
97 configuration=@configuration@
98
99 # ==================== Where To Install Things ====================
100
101 # The default location for installation.  Everything is placed in
102 # subdirectories of this directory.  The default values for many of
103 # the variables below are expressed in terms of this one, so you may
104 # not need to change them.  This defaults to /usr/local.
105 prefix=@prefix@
106
107 # Like `prefix', but used for architecture-specific files.
108 exec_prefix=@exec_prefix@
109
110 # Where to install Emacs and other binaries that people will want to
111 # run directly (like etags).
112 bindir=@bindir@
113
114 # The root of the directory tree for read-only architecture-independent
115 # data files.  ${datadir}, ${infodir} and ${mandir} are based on this.
116 datarootdir=@datarootdir@
117
118 # Where to install architecture-independent data files.  ${lispdir}
119 # and ${etcdir} are subdirectories of this.
120 datadir=@datadir@
121
122 # Where to install and expect the files that Emacs modifies as it
123 # runs.  These files are all architecture-independent.
124 # Right now, this is not used.
125 sharedstatedir=@sharedstatedir@
126
127 # Where to install and expect executable files to be run by Emacs
128 # rather than directly by users, and other architecture-dependent
129 # data.  ${archlibdir} is a subdirectory of this.
130 libexecdir=@libexecdir@
131
132 # Where to install Emacs's man pages, and what extension they should have.
133 mandir=@mandir@
134 manext=.1
135 man1dir=$(mandir)/man1
136
137 # Where to install and expect the info files describing Emacs.  In the
138 # past, this defaulted to a subdirectory of ${prefix}/lib/emacs, but
139 # since there are now many packages documented with the texinfo
140 # system, it is inappropriate to imply that it is part of Emacs.
141 infodir=@infodir@
142 INFO_FILES=ada-mode autotype calc ccmode cl dired-x ebrowse ediff efaq \
143            elisp eintr emacs emacs-mime eshell eudc flymake \
144            forms gnus idlwave info message mh-e newsticker org pcl-cvs \
145            pgg reftex sc ses sieve speedbar tramp vip viper widget     \
146            woman smtpmail url rcirc erc
147
148 # Directory for local state files for all programs.
149 localstatedir=@localstatedir@
150
151 # Where to look for bitmap files.
152 bitmapdir=@bitmapdir@
153
154 # Where to find the source code.  The source code for Emacs's C kernel is
155 # expected to be in ${srcdir}/src, and the source code for Emacs's
156 # utility programs is expected to be in ${srcdir}/lib-src.  This is
157 # set by the configure script's `--srcdir' option.
158
159 # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
160 srcdir=@srcdir@
161
162 # Tell make where to find source files; this is needed for the makefiles.
163 VPATH=@srcdir@
164
165 # Where to find the application default.
166 x_default_search_path=@x_default_search_path@
167
168 # Location to install Emacs.app on Mac OS X
169 carbon_appdir=@carbon_appdir@
170
171 # ==================== Emacs-specific directories ====================
172
173 # These variables hold the values Emacs will actually use.  They are
174 # based on the values of the standard Make variables above.
175
176 # Where to install the lisp files distributed with
177 # Emacs.  This includes the Emacs version, so that the
178 # lisp files for different versions of Emacs will install
179 # themselves in separate directories.
180 lispdir=@lispdir@
181
182 # Directories Emacs should search for lisp files specific
183 # to this site (i.e. customizations), before consulting
184 # ${lispdir}.  This should be a colon-separated list of
185 # directories.
186 locallisppath=@locallisppath@
187
188 # Where Emacs will search to find its lisp files.  Before
189 # changing this, check to see if your purpose wouldn't
190 # better be served by changing locallisppath.  This
191 # should be a colon-separated list of directories.
192 lisppath=@lisppath@
193
194 # Where Emacs will search for its lisp files while
195 # building.  This is only used during the process of
196 # compiling Emacs, to help Emacs find its lisp files
197 # before they've been installed in their final location.
198 # It's usually identical to lisppath, except that
199 # it does not include locallisppath, and the
200 # entry for the directory containing the installed lisp
201 # files has been replaced with ../lisp.  This should be a
202 # colon-separated list of directories.
203 buildlisppath=${srcdir}/lisp
204
205 # Where to install the other architecture-independent
206 # data files distributed with Emacs (like the tutorial,
207 # the cookie recipes and the Zippy database). This path
208 # usually contains the Emacs version number, so the data
209 # files for multiple versions of Emacs may be installed
210 # at once.
211 etcdir=@etcdir@
212
213 # Where to put executables to be run by Emacs rather than
214 # the user.  This path usually includes the Emacs version
215 # and configuration name, so that multiple configurations
216 # for multiple versions of Emacs may be installed at
217 # once.
218 archlibdir=@archlibdir@
219
220 # Where to put the docstring file.
221 docdir=@docdir@
222
223 # Where to install Emacs game score files.
224 gamedir=@gamedir@
225
226 # ==================== Utility Programs for the Build ====================
227
228 # Allow the user to specify the install program.
229 INSTALL = @INSTALL@
230 INSTALL_PROGRAM = @INSTALL_PROGRAM@
231 INSTALL_DATA = @INSTALL_DATA@
232 INSTALL_INFO = @INSTALL_INFO@
233 # By default, we uphold the dignity of our programs.
234 INSTALL_STRIP =
235
236 # We use gzip to compress installed .el files.
237 GZIP_PROG = @GZIP_PROG@
238
239 # ============================= Targets ==============================
240
241 # Program name transformation.
242 TRANSFORM = @program_transform_name@
243
244 # What emacs should be called when installed.
245 EMACS = `echo emacs${EXEEXT} | sed '$(TRANSFORM)'`
246 EMACSFULL = `echo emacs-${version}${EXEEXT} | sed '$(TRANSFORM)'`
247
248 # Subdirectories to make recursively.  `lisp' is not included
249 # because the compiled lisp files are part of the distribution.
250 # leim is not included because it needs special handling.
251 SUBDIR = lib-src src
252
253 # The makefiles of the directories in $SUBDIR.
254 SUBDIR_MAKEFILES = lib-src/Makefile man/Makefile lispref/Makefile lispintro/Makefile src/Makefile oldXMenu/Makefile lwlib/Makefile leim/Makefile
255
256 # Subdirectories to install, and where they'll go.
257 # lib-src's makefile knows how to install it, so we don't do that here.
258 # leim's makefile also knows how to install it, so we don't do that here.
259 # When installing the info files, we need to do special things to
260 # avoid nuking an existing dir file, so we don't do that here;
261 # instead, we have written out explicit code in the `install' targets.
262 COPYDIR = ${srcdir}/etc ${srcdir}/lisp
263 COPYDESTS = $(DESTDIR)${etcdir} $(DESTDIR)${lispdir}
264
265 all: ${SUBDIR} leim
266
267 removenullpaths=sed -e 's/^://g' -e 's/:$$//g' -e 's/::/:/g'
268
269 # Generate epaths.h from epaths.in.  This target is invoked by `configure'.
270 epaths-force: FRC
271         @(lisppath=`echo ${lisppath} | ${removenullpaths}` ;            \
272           buildlisppath=`echo ${buildlisppath} | ${removenullpaths}` ;  \
273           x_default_search_path=`echo ${x_default_search_path}`; \
274           gamedir=`echo ${gamedir}`; \
275           sed < ${srcdir}/src/epaths.in > epaths.h.$$$$         \
276           -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'"$${lisppath}"'";'      \
277           -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'"$${buildlisppath}"'";' \
278           -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";'               \
279           -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";'                  \
280           -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";'                   \
281           -e 's;\(#.*PATH_BITMAPS\).*$$;\1 "${bitmapdir}";'             \
282           -e 's;\(#.*PATH_X_DEFAULTS\).*$$;\1 "${x_default_search_path}";' \
283           -e 's;\(#.*PATH_GAME\).*$$;\1 "${gamedir}";' \
284           -e 's;\(#.*PATH_DOC\).*$$;\1 "${docdir}";' \
285           -e 's;/[*] *arch-tag:.*;/*;') &&              \
286         ${srcdir}/move-if-change epaths.h.$$$$ src/epaths.h
287
288 # For parallel make, src should be built before leim.
289 # "export PARALLEL=0" is for SGI's Make, to prevent it from
290 # running more than 1 process in the leim directory, especially for
291 # the $TIT files there.
292 leim:   src ${SUBDIR_MAKEFILES} FRC
293         (export PARALLEL; PARALLEL=0; cd $@; $(MAKE) all $(MFLAGS) \
294           CC='${CC}' CFLAGS='${CFLAGS}' CPPFLAGS='${CPPFLAGS}' \
295           LDFLAGS='${LDFLAGS}' MAKE='${MAKE}')
296
297 src:    lib-src FRC
298
299 lib-src: FRC src/config.stamp
300
301 .RECURSIVE: ${SUBDIR} leim
302
303 ${SUBDIR}: maybe_bootstrap ${SUBDIR_MAKEFILES} FRC
304         cd $@; $(MAKE) all $(MFLAGS) \
305           CC='${CC}' CFLAGS='${CFLAGS}' CPPFLAGS='${CPPFLAGS}' \
306           LDFLAGS='${LDFLAGS}' MAKE='${MAKE}'
307
308 blessmail: ${SUBDIR_MAKEFILES} src FRC
309         cd lib-src; $(MAKE) maybe-blessmail $(MFLAGS) \
310           MAKE='${MAKE}' archlibdir='$(archlibdir)'
311
312 Makefile: $(srcdir)/Makefile.in config.status
313         ./config.status
314
315 config.status: ${srcdir}/configure
316         ./config.status --recheck
317
318 AUTOCONF_INPUTS = @MAINT@ $(srcdir)/configure.in $(srcdir)/m4/getopt.m4
319
320 $(srcdir)/configure: $(AUTOCONF_INPUTS)
321         cd ${srcdir} && autoconf
322
323 $(srcdir)/src/config.in: $(srcdir)/src/stamp-h.in
324         @true
325 $(srcdir)/src/stamp-h.in: $(AUTOCONF_INPUTS)
326         cd ${srcdir} && autoheader
327         rm -f $(srcdir)/src/stamp-h.in
328         echo timestamp > $(srcdir)/src/stamp-h.in
329
330 src/Makefile: $(srcdir)/src/Makefile.in config.status
331         ./config.status
332
333 src/config.stamp: $(srcdir)/src/config.in config.status
334         ./config.status
335         touch src/config.stamp
336
337 lib-src/Makefile: $(srcdir)/lib-src/Makefile.in config.status
338         ./config.status
339
340 man/Makefile: $(srcdir)/man/Makefile.in config.status
341         ./config.status
342
343 lispref/Makefile: $(srcdir)/lispref/Makefile.in config.status
344         ./config.status
345
346 lispintro/Makefile: $(srcdir)/lispintro/Makefile.in config.status
347         ./config.status
348
349 oldXMenu/Makefile: $(srcdir)/oldXMenu/Makefile.in config.status
350         ./config.status
351
352 lwlib/Makefile: $(srcdir)/lwlib/Makefile.in config.status
353         ./config.status
354
355 leim/Makefile: $(srcdir)/leim/Makefile.in config.status
356         ./config.status
357
358 # ==================== Installation ====================
359
360 ## If we let lib-src do its own installation, that means we
361 ## don't have to duplicate the list of utilities to install in
362 ## this Makefile as well.
363
364 ## On AIX, use tar xBf.
365 ## On Xenix, use tar xpf.
366
367 .PHONY: install mkdir
368
369 ## We delete each directory in ${COPYDESTS} before we copy into it;
370 ## that way, we can reinstall over directories that have been put in
371 ## place with their files read-only (perhaps because they are checked
372 ## into RCS).  In order to make this safe, we make sure that the
373 ## source exists and is distinct from the destination.
374 ### We do install-arch-indep first because
375 ### the executable needs the Lisp files and DOC file to work properly.
376 install: all install-arch-indep install-arch-dep install-leim blessmail
377         @true
378
379 ### Install the executables that were compiled specifically for this machine.
380 ### It would be nice to do something for a parallel make
381 ### to ensure that install-arch-indep finishes before this starts.
382 install-arch-dep: mkdir
383         (cd lib-src; \
384           $(MAKE) install $(MFLAGS) prefix=${prefix} \
385             exec_prefix=${exec_prefix} bindir=${bindir} \
386             libexecdir=${libexecdir} archlibdir=${archlibdir} \
387             INSTALL_STRIP=${INSTALL_STRIP})
388         ${INSTALL_PROGRAM} $(INSTALL_STRIP) src/emacs${EXEEXT} $(DESTDIR)${bindir}/$(EMACSFULL)
389         -chmod 1755 $(DESTDIR)${bindir}/$(EMACSFULL)
390         rm -f $(DESTDIR)${bindir}/$(EMACS)
391         -ln $(DESTDIR)${bindir}/$(EMACSFULL) $(DESTDIR)${bindir}/$(EMACS)
392         -unset CDPATH; \
393         for f in `cd lib-src && echo fns-*.el`; do \
394           if test -r lib-src/$$f ; then \
395             ${INSTALL_DATA} lib-src/$$f $(DESTDIR)${archlibdir}/$$f; \
396           else true; fi ; \
397         done
398         if test "${carbon_appdir}" != ""; then \
399           umask 022; mkdir -p $(DESTDIR)${carbon_appdir}/Emacs.app; \
400           (cd mac/Emacs.app; (tar -chf - . | \
401                 (cd $(DESTDIR)${carbon_appdir}/Emacs.app; umask 022; tar -xvf - \
402                         && cat > /dev/null))) || exit 1; \
403         fi
404
405 ### Install the files that are machine-independent.
406 ### Most of them come straight from the distribution;
407 ### the exception is the DOC-* files, which are copied
408 ### from the build directory.
409
410 ## Note that we copy DOC* and then delete DOC
411 ## as a workaround for a bug in tar on Ultrix 4.2.
412
413 ## FIXME
414 ## Should only install the DOC- file appropriate to this build, not DOC-*.
415 ## http://lists.gnu.org/archive/html/emacs-pretest-bug/2007-01/msg00417.html
416 ## (fix available for consideration post-release).
417
418 ## If people complain about the h flag in tar command, take that out.
419 ## That flag is also used in leim/Makefile.in
420 install-arch-indep: mkdir info
421         -set ${COPYDESTS} ; \
422         unset CDPATH; \
423         for dir in ${COPYDIR} ; do \
424           if [ `(cd $$1 && /bin/pwd)` != `(cd $${dir} && /bin/pwd)` ] ; then \
425             rm -rf $$1 ; \
426           fi ; \
427           shift ; \
428         done
429         -set ${COPYDESTS} ; \
430         mkdir ${COPYDESTS} ; \
431         chmod ugo+rx ${COPYDESTS} ; \
432         unset CDPATH; \
433         for dir in ${COPYDIR} ; do \
434           dest=$$1 ; shift ; \
435           [ -d $${dir} ] \
436           && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \
437           && (echo "Copying $${dir} to $${dest}..." ; \
438               (cd $${dir}; tar -chf - . ) \
439                 | (cd $${dest}; umask 022; \
440                    tar -xvf - && cat > /dev/null) || exit 1; \
441               find $${dest} -exec chown $${LOGNAME:-$$USERNAME} {} ';' ;\
442               for subdir in `find $${dest} -type d ! -name RCS ! -name CVS -print` ; do \
443                 chmod a+rx $${subdir} ; \
444                 rm -rf $${subdir}/RCS ; \
445                 rm -rf $${subdir}/CVS ; \
446                 rm -f  $${subdir}/.cvsignore ; \
447                 rm -f  $${subdir}/.arch-inventory ; \
448                 rm -f  $${subdir}/\#* ; \
449                 rm -f  $${subdir}/.\#* ; \
450                 rm -f  $${subdir}/*~ ; \
451                 rm -f  $${subdir}/*.orig ; \
452                 rm -f  $${subdir}/[mM]akefile* ; \
453                 rm -f  $${subdir}/ChangeLog* ; \
454                 rm -f  $${subdir}/dired.todo ; \
455               done) ; \
456         done
457         -rm -f $(DESTDIR)${lispdir}/subdirs.el
458         $(srcdir)/update-subdirs $(DESTDIR)${lispdir}
459         if [ -f $(DESTDIR)${datadir}/emacs/${version}/site-lisp/subdirs.el ]; \
460         then true; \
461         else \
462           (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \
463            echo "    (normal-top-level-add-subdirs-to-load-path))") \
464             > $(DESTDIR)${datadir}/emacs/${version}/site-lisp/subdirs.el; \
465         fi
466         chmod a+r $(DESTDIR)${datadir}/emacs/${version}/site-lisp/subdirs.el
467         -if [ -f $(DESTDIR)${datadir}/emacs/site-lisp/subdirs.el ]; \
468         then true; \
469         else \
470           (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \
471            echo "    (normal-top-level-add-subdirs-to-load-path))") \
472             > $(DESTDIR)${datadir}/emacs/site-lisp/subdirs.el; \
473         fi
474         -chmod a+r $(DESTDIR)${datadir}/emacs/site-lisp/subdirs.el
475         -unset CDPATH; \
476         if [ `(cd ./etc; /bin/pwd)` != `(cd $(DESTDIR)${docdir}; /bin/pwd)` ]; \
477         then \
478            echo "Copying etc/DOC-* to $(DESTDIR)${docdir} ..." ; \
479            (cd ./etc; tar -chf - DOC*) \
480              |(cd $(DESTDIR)${docdir}; umask 022; tar -xvf - && cat > /dev/null) || exit 1; \
481            (cd $(DESTDIR)$(docdir); chown $${LOGNAME:-$$USERNAME} DOC*; chmod a+r DOC*; \
482             if test "`echo DOC-*`" != "DOC-*"; then rm -f DOC; fi); \
483         else true; fi
484         -unset CDPATH; \
485         if [ -r ./lisp ] \
486            && [ -r ./lisp/simple.el ] \
487            && [ x`(cd ./lisp; /bin/pwd)` != x`(cd $(DESTDIR)${lispdir}; /bin/pwd)` ] \
488            && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \
489         then \
490            echo "Copying lisp/*.el and lisp/*.elc to $(DESTDIR)${lispdir} ..." ; \
491            (cd lisp; tar -chf - *.el *.elc) \
492              |(cd $(DESTDIR)${lispdir}; umask 022; tar -xvf - && cat > /dev/null) || exit 1; \
493            (cd $(DESTDIR)${lispdir}; find . -exec chown $${LOGNAME:-$$USERNAME} {} ';') ; \
494         else true; fi
495         -unset CDPATH; \
496         if [ -n "${GZIP_PROG}" ]; \
497         then \
498            echo "Compressing *.el ..." ; \
499            (cd $(DESTDIR)${lispdir}; for f in `find . -name "*.elc" -print`; do \
500                 ${GZIP_PROG} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \
501             done) \
502         else true; fi
503         -unset CDPATH; \
504         thisdir=`/bin/pwd`; \
505         if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd $(DESTDIR)${infodir} && /bin/pwd)` ]; \
506         then \
507           (cd $(DESTDIR)${infodir};  \
508            if [ -f dir ]; then true; \
509            else \
510              (cd $${thisdir}; \
511               ${INSTALL_DATA} ${srcdir}/info/dir $(DESTDIR)${infodir}/dir; \
512               chmod a+r $(DESTDIR)${infodir}/dir); \
513            fi; \
514            cd ${srcdir}/info ; \
515            for elt in $(INFO_FILES); do \
516               for f in `ls $$elt $$elt-[1-9] $$elt-[1-9][0-9] 2>/dev/null`; do \
517                 ${INSTALL_DATA} $$f $(DESTDIR)${infodir}/$$f; \
518                 chmod a+r $(DESTDIR)${infodir}/$$f; \
519               done; \
520            done); \
521         else true; fi
522         -unset CDPATH; \
523         thisdir=`/bin/pwd`; \
524         if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd $(DESTDIR)${infodir} && /bin/pwd)` ]; \
525         then \
526           for elt in $(INFO_FILES); do \
527             (cd $${thisdir}; \
528              ${INSTALL_INFO} --info-dir=$(DESTDIR)${infodir} $(DESTDIR)${infodir}/$$elt); \
529           done; \
530         else true; fi
531         -chmod -R a+r $(DESTDIR)${datadir}/emacs/${version} $(DESTDIR)${datadir}/emacs/site-lisp ${COPYDESTS} $(DESTDIR)${infodir}
532         thisdir=`/bin/pwd`; \
533         cd ${srcdir}/etc; \
534         for page in emacs emacsclient etags ctags ; do \
535           (cd $${thisdir}; \
536            ${INSTALL_DATA} ${srcdir}/etc/$${page}.1 $(DESTDIR)${man1dir}/$${page}${manext}; \
537            chmod a+r $(DESTDIR)${man1dir}/$${page}${manext}); \
538         done
539
540 ### Install LEIM files.  Although they are machine-independent, we
541 ### have separate target here instead of including it in
542 ### `install-arch-indep'.  People who extracted LEIM files after they
543 ### insalled Emacs itself can install only LEIM files by this target.
544 install-leim: leim/Makefile mkdir
545         cd leim; $(MAKE) install
546
547 ### Build Emacs and install it, stripping binaries while installing them.
548 install-strip:
549         $(MAKE) INSTALL_STRIP=-s install
550
551 ### Build all the directories we're going to install Emacs in.  Since
552 ### we may be creating several layers of directories (for example,
553 ### /usr/local/lib/emacs/19.0/mips-dec-ultrix4.2), we use mkinstalldirs
554 ### instead of mkdir.  Not all systems' mkdir programs have the `-p' flag.
555 mkdir: FRC
556         if [ -d $(DESTDIR)${datadir} ]; then true; else \
557           $(srcdir)/mkinstalldirs $(DESTDIR)${datadir}; \
558           chmod a+r $(DESTDIR)${datadir};\
559         fi
560         $(srcdir)/mkinstalldirs ${COPYDESTS} $(DESTDIR)${infodir} $(DESTDIR)${man1dir} \
561           $(DESTDIR)${bindir} $(DESTDIR)${docdir} $(DESTDIR)${libexecdir} \
562           $(DESTDIR)${datadir}/emacs/site-lisp \
563           $(DESTDIR)${datadir}/emacs/${version}/site-lisp \
564           $(DESTDIR)`echo ${locallisppath} | sed 's,:, $(DESTDIR),g'`
565
566 ### Delete all the installed files that the `install' target would
567 ### create (but not the noninstalled files such as `make all' would
568 ### create).
569 ###
570 ### Don't delete the lisp and etc directories if they're in the source tree.
571 uninstall:
572         (cd lib-src;                                    \
573          $(MAKE) $(MFLAGS) uninstall                    \
574             prefix=${prefix} exec_prefix=${exec_prefix} \
575             bindir=${bindir} libexecdir=${libexecdir} archlibdir=${archlibdir})
576         -unset CDPATH; \
577         for dir in $(DESTDIR)${lispdir} $(DESTDIR)${etcdir} ; do        \
578           if [ -d $${dir} ]; then                       \
579             case `(cd $${dir} ; /bin/pwd)` in           \
580               `(cd ${srcdir} ; /bin/pwd)`* ) ;;         \
581               * ) rm -rf $${dir} ;;                     \
582             esac ;                                      \
583             case $${dir} in                             \
584               $(DESTDIR)${datadir}/emacs/${version}/* )         \
585                 rm -rf $(DESTDIR)${datadir}/emacs/${version}    \
586               ;;                                        \
587             esac ;                                      \
588           fi ;                                          \
589         done
590         (cd $(DESTDIR)${archlibdir} && rm -f fns-*)
591         -rm -rf $(DESTDIR)${libexecdir}/emacs/${version}
592         (cd $(DESTDIR)${infodir} && \
593           for elt in $(INFO_FILES); do \
594             $(INSTALL_INFO) --remove --info-dir=. $$elt; \
595             for f in `ls $$elt $$elt-[1-9] $$elt-[1-9][0-9] 2>/dev/null`; do \
596               rm -f $$f; \
597             done; \
598           done;)
599         (cd $(DESTDIR)${man1dir}  && rm -f emacs${manext} emacsclient${manext} etags${manext} ctags${manext})
600         (cd $(DESTDIR)${bindir}  && rm -f $(EMACSFULL) $(EMACS))
601
602
603 FRC:
604
605 # ==================== Cleaning up and miscellanea ====================
606
607 .PHONY: mostlyclean clean distclean maintainer-clean extraclean
608
609 ### `mostlyclean'
610 ###      Like `clean', but may refrain from deleting a few files that people
611 ###      normally don't want to recompile.  For example, the `mostlyclean'
612 ###      target for GCC does not delete `libgcc.a', because recompiling it
613 ###      is rarely necessary and takes a lot of time.
614 mostlyclean: FRC
615         (cd src;      $(MAKE) $(MFLAGS) mostlyclean)
616         (cd oldXMenu; $(MAKE) $(MFLAGS) mostlyclean)
617         (cd lwlib;    $(MAKE) $(MFLAGS) mostlyclean)
618         (cd lib-src;  $(MAKE) $(MFLAGS) mostlyclean)
619         -(cd man &&   $(MAKE) $(MFLAGS) mostlyclean)
620         -(cd lispref &&   $(MAKE) $(MFLAGS) mostlyclean)
621         -(cd lispintro &&   $(MAKE) $(MFLAGS) mostlyclean)
622         (cd leim;     $(MAKE) $(MFLAGS) mostlyclean)
623
624 ### `clean'
625 ###      Delete all files from the current directory that are normally
626 ###      created by building the program.  Don't delete the files that
627 ###      record the configuration.  Also preserve files that could be made
628 ###      by building, but normally aren't because the distribution comes
629 ###      with them.
630 ###
631 ###      Delete `.dvi' files here if they are not part of the distribution.
632 clean: FRC
633         (cd src;      $(MAKE) $(MFLAGS) clean)
634         (cd oldXMenu; $(MAKE) $(MFLAGS) clean)
635         (cd lwlib;    $(MAKE) $(MFLAGS) clean)
636         (cd lib-src;  $(MAKE) $(MFLAGS) clean)
637         -(cd man &&   $(MAKE) $(MFLAGS) clean)
638         -(cd lispref &&   $(MAKE) $(MFLAGS) clean)
639         -(cd lispintro &&   $(MAKE) $(MFLAGS) clean)
640         (cd leim;     $(MAKE) $(MFLAGS) clean)
641
642 ### `distclean'
643 ###      Delete all files from the current directory that are created by
644 ###      configuring or building the program.  If you have unpacked the
645 ###      source and built the program without creating any other files,
646 ###      `make distclean' should leave only the files that were in the
647 ###      distribution.
648 top_distclean=\
649         rm -f config.status config.cache config.log ; \
650         rm -f Makefile ${SUBDIR_MAKEFILES} ; \
651         if [ -d lock ] ; then (cd lock && (rm -f * || true)); else true; fi
652 distclean: FRC
653         (cd src;      $(MAKE) $(MFLAGS) distclean)
654         (cd oldXMenu; $(MAKE) $(MFLAGS) distclean)
655         (cd lwlib;    $(MAKE) $(MFLAGS) distclean)
656         (cd lib-src;  $(MAKE) $(MFLAGS) distclean)
657         (cd man &&    $(MAKE) $(MFLAGS) distclean)
658         (cd lispref &&    $(MAKE) $(MFLAGS) distclean)
659         (cd lispintro &&    $(MAKE) $(MFLAGS) distclean)
660         (cd leim;     $(MAKE) $(MFLAGS) distclean)
661         (cd lisp;     $(MAKE) $(MFLAGS) distclean)
662         ${top_distclean}
663
664 ### `maintainer-clean'
665 ###      Delete everything from the current directory that can be
666 ###      reconstructed with this Makefile.  This typically includes
667 ###      everything deleted by distclean, plus more: C source files
668 ###      produced by Bison, tags tables, info files, and so on.
669 ###
670 ###      One exception, however: `make maintainer-clean' should not delete
671 ###      `configure' even if `configure' can be remade using a rule in the
672 ###      Makefile.  More generally, `make maintainer-clean' should not delete
673 ###      anything that needs to exist in order to run `configure' and then
674 ###      begin to build the program.
675 maintainer-clean: FRC
676         (cd src;      $(MAKE) $(MFLAGS) maintainer-clean)
677         (cd oldXMenu; $(MAKE) $(MFLAGS) maintainer-clean)
678         (cd lwlib;    $(MAKE) $(MFLAGS) maintainer-clean)
679         (cd lib-src;  $(MAKE) $(MFLAGS) maintainer-clean)
680         -(cd man &&   $(MAKE) $(MFLAGS) maintainer-clean)
681         -(cd lispref &&   $(MAKE) $(MFLAGS) maintainer-clean)
682         -(cd lispintro &&   $(MAKE) $(MFLAGS) maintainer-clean)
683         (cd leim;     $(MAKE) $(MFLAGS) maintainer-clean)
684         (cd lisp;     $(MAKE) $(MFLAGS) maintainer-clean)
685         ${top_distclean}
686
687 ### This doesn't actually appear in the coding standards, but Karl
688 ### says GCC supports it, and that's where the configuration part of
689 ### the coding standards seem to come from.  It's like distclean, but
690 ### it deletes backup and autosave files too.
691 extraclean:
692         for i in ${SUBDIR} leim; do (cd $$i; $(MAKE) $(MFLAGS) extraclean); done
693         ${top_distclean}
694         -rm -f config-tmp-*
695         -rm -f *~ \#*
696
697 ### Unlocking and relocking.  The idea of these productions is to reduce
698 ### hassles when installing an incremental tar of Emacs.  Do `make unlock'
699 ### before unlocking the file to take the write locks off all sources so
700 ### that tar xvof will overwrite them without fuss.  Then do `make relock'
701 ### afterward so that VC mode will know which files should be checked in
702 ### if you want to mung them.
703 ###
704 ### Note: it's no disaster if these productions miss a file or two; tar
705 ### and VC will swiftly let you know if this happens, and it is easily
706 ### corrected.
707 SOURCES = ChangeLog FTP INSTALL Makefile.in \
708         README configure make-dist move-if-change
709
710 .PHONY: unlock relock
711
712 unlock:
713         chmod u+w $(SOURCES)
714         -(cd elisp; chmod u+w Makefile README *.texi)
715         (cd etc; $(MAKE) $(MFLAGS) unlock)
716         (cd lib-src; $(MAKE) $(MFLAGS) unlock)
717         (cd lisp; $(MAKE) $(MFLAGS) unlock)
718         (cd lisp/term; chmod u+w README *.el)
719         (cd man; chmod u+w *texi* ChangeLog split-man)
720         (cd lispref; chmod u+w *texi* ChangeLog)
721         (cd lispintro; chmod u+w *texi* ChangeLog)
722         (cd oldXMenu; chmod u+w *.[ch] Makefile README)
723         (cd lwlib; chmod u+w *.[ch] Makefile README)
724         (cd src; $(MAKE) $(MFLAGS) unlock)
725
726 relock:
727         chmod u-w $(SOURCES)
728         -(cd elisp; chmod u-w Makefile README *.texi)
729         (cd etc; $(MAKE) $(MFLAGS) relock)
730         (cd lib-src; $(MAKE) $(MFLAGS) relock)
731         (cd lisp; $(MAKE) $(MFLAGS) relock)
732         (cd lisp/term; chmod u+w README *.el)
733         (cd man; chmod u+w *texi* ChangeLog split-man)
734         (cd lispref; chmod u+w *texi* ChangeLog)
735         (cd lispintro; chmod u+w *texi* ChangeLog)
736         (cd oldXMenu; chmod u+w *.[ch] Makefile README)
737         (cd lwlib; chmod u+w *.[ch] Makefile README)
738         (cd src; $(MAKE) $(MFLAGS) relock)
739
740 # The src subdir knows how to do the right thing
741 # even when the build directory and source dir are different.
742 TAGS tags: lib-src src
743         cd src; $(MAKE) tags
744
745 check:
746         @echo "We don't have any tests for GNU Emacs yet."
747
748 dist:
749         cd ${srcdir}; ./make-dist
750
751 .PHONY: info dvi dist check html
752 force-info:
753 # Note that man/Makefile knows how to
754 # put the info files in $(srcdir),
755 # so we can do ok running make in the build dir.
756 info: force-info
757         -(cd man; $(MAKE) $(MFLAGS) info)
758         -(cd lispref; $(MAKE) $(MFLAGS) info)
759         -(cd lispintro; $(MAKE) $(MFLAGS) info)
760 dvi:
761         (cd man; $(MAKE) $(MFLAGS) dvi)
762         (cd lispref; $(MAKE) $(MFLAGS) elisp.dvi)
763         (cd lispintro; $(MAKE) $(MFLAGS) emacs-lisp-intro.dvi)
764
765 #### Bootstrapping.
766
767 ### This is meant for Emacs maintainers only.  It first cleans the
768 ### lisp subdirectory, removing all compiled Lisp files.  Then a
769 ### special emacs executable is built from Lisp sources, which is then
770 ### used to compile Lisp files.  The last step is a "normal" make.
771
772 .PHONY: bootstrap
773 .PHONY: bootstrap-build
774 .PHONY: bootfast
775 .PHONY: maybe_bootstrap
776
777 maybe_bootstrap:
778         @bar="`echo $(srcdir)/lisp/*.elc`"; \
779         if [ \( "$$bar" = '$(srcdir)/lisp/*.elc' \) -o \( "$$bar" = '' \) ]; then \
780           echo "Your tree does not include the compiled Lisp files."; \
781           echo "You need to do \`make bootstrap' to build Emacs."; \
782           echo "Emacs now requires Texinfo version 4.2."; \
783           exit 1;\
784         fi
785
786 bootstrap: bootstrap-clean-before FRC
787         $(MAKE) $(MFLAGS) info bootstrap-build
788
789 bootfast: bootstrap-clean-before-fast FRC
790         $(MAKE) $(MFLAGS) info bootstrap-build
791
792 bootstrap-build: FRC
793         (cd lisp; $(MAKE) $(MFLAGS) bootstrap-prepare)
794         (cd src; $(MAKE) $(MFLAGS) bootstrap)
795         (cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs${EXEEXT})
796         (cd src; $(MAKE) $(MFLAGS) mostlyclean)
797         $(MAKE) $(MFLAGS) all
798         (cd lisp; $(MAKE) $(MFLAGS) bootstrap-after)
799
800 ### Used for `bootstrap' to avoid deleting existing dumped Emacs executables.
801 bootstrap-clean-before: bootstrap-clean-before-fast FRC
802         (cd lisp;     $(MAKE) $(MFLAGS) bootstrap-clean)
803         (cd leim;     $(MAKE) $(MFLAGS) bootstrap-clean)
804
805 ### Used for `bootfast' to avoid deleting existing dumped Emacs executables
806 ### and compiled .elc files.
807 bootstrap-clean-before-fast: FRC
808         (cd src;      $(MAKE) $(MFLAGS) mostlyclean)
809         (cd oldXMenu; $(MAKE) $(MFLAGS) clean)
810         (cd lwlib;    $(MAKE) $(MFLAGS) clean)
811         (cd lib-src;  $(MAKE) $(MFLAGS) clean)
812         -(cd man &&   $(MAKE) $(MFLAGS) clean)
813         -(cd lispref &&   $(MAKE) $(MFLAGS) clean)
814         -(cd lispintro &&   $(MAKE) $(MFLAGS) clean)
815         (cd leim;     $(MAKE) $(MFLAGS) clean)
Note: See TracBrowser for help on using the browser.