*** empty log message ***
[bpt/emacs.git] / Makefile.in
... / ...
CommitLineData
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# make all to compile and build Emacs.
6# make install to install it.
7# make TAGS to update tags tables.
8#
9# make clean or make mostlyclean
10# Delete all files from the current directory that are normally
11# created by building the program. Don't delete the files that
12# record the configuration. Also preserve files that could be made
13# by building, but normally aren't because the distribution comes
14# with them.
15#
16# Delete `.dvi' files here if they are not part of the distribution.
17#
18# make distclean
19# Delete all files from the current directory that are created by
20# configuring or building the program. If you have unpacked the
21# source and built the program without creating any other files,
22# `make distclean' should leave only the files that were in the
23# distribution.
24#
25# make maintainer-clean
26# Delete everything from the current directory that can be
27# reconstructed with this Makefile. This typically includes
28# everything deleted by distclean, plus more: C source files
29# produced by Bison, tags tables, info files, and so on.
30#
31# make extraclean
32# Still more severe - delete backup and autosave files, too.
33
34SHELL = /bin/sh
35
36# If Make doesn't predefine MAKE, set it here.
37@SET_MAKE@
38
39# ==================== Things `configure' Might Edit ====================
40
41CC=@CC@
42CPP=@CPP@
43C_SWITCH_SYSTEM=@c_switch_system@
44ALLOCA=@ALLOCA@
45LN_S=@LN_S@
46CFLAGS=@CFLAGS@
47LDFLAGS=@LDFLAGS@
48CPPFLAGS=@CPPFLAGS@
49C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
50LD_SWITCH_X_SITE=@LD_SWITCH_X_SITE@
51YACC=@YACC@
52
53### These help us choose version- and architecture-specific directories
54### to install files in.
55
56### This should be the number of the Emacs version we're building,
57### like `18.59' or `19.0'.
58version=@version@
59
60### This should be the name of the configuration we're building Emacs
61### for, like `mips-dec-ultrix' or `sparc-sun-sunos'.
62configuration=@configuration@
63
64# ==================== Where To Install Things ====================
65
66# The default location for installation. Everything is placed in
67# subdirectories of this directory. The default values for many of
68# the variables below are expressed in terms of this one, so you may
69# not need to change them. This defaults to /usr/local.
70prefix=@prefix@
71
72# Like `prefix', but used for architecture-specific files.
73exec_prefix=@exec_prefix@
74
75# Where to install Emacs and other binaries that people will want to
76# run directly (like etags).
77bindir=@bindir@
78
79# Where to install architecture-independent data files. ${lispdir}
80# and ${etcdir} are subdirectories of this.
81datadir=@datadir@
82
83# Where to install and expect the files that Emacs modifies as it
84# runs. These files are all architecture-independent.
85# Right now, this is not used.
86sharedstatedir=@sharedstatedir@
87
88# Where to install and expect executable files to be run by Emacs
89# rather than directly by users, and other architecture-dependent
90# data. ${archlibdir} is a subdirectory of this.
91libexecdir=@libexecdir@
92
93# Where to install Emacs's man pages, and what extension they should have.
94mandir=@mandir@
95manext=.1
96man1dir=$(mandir)/man1
97
98# Where to install and expect the info files describing Emacs. In the
99# past, this defaulted to a subdirectory of ${prefix}/lib/emacs, but
100# since there are now many packages documented with the texinfo
101# system, it is inappropriate to imply that it is part of Emacs.
102infodir=@infodir@
103
104# Where to look for bitmap files.
105bitmapdir=@bitmapdir@
106
107# Where to find the source code. The source code for Emacs's C kernel is
108# expected to be in ${srcdir}/src, and the source code for Emacs's
109# utility programs is expected to be in ${srcdir}/lib-src. This is
110# set by the configure script's `--srcdir' option.
111
112# We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
113srcdir=@srcdir@
114
115# Tell make where to find source files; this is needed for the makefiles.
116VPATH=@srcdir@
117
118# Where to find the application default.
119x_default_search_path=@x_default_search_path@
120
121# ==================== Emacs-specific directories ====================
122
123# These variables hold the values Emacs will actually use. They are
124# based on the values of the standard Make variables above.
125
126# Where to install the lisp files distributed with
127# Emacs. This includes the Emacs version, so that the
128# lisp files for different versions of Emacs will install
129# themselves in separate directories.
130lispdir=@lispdir@
131
132# Directories Emacs should search for lisp files specific
133# to this site (i.e. customizations), before consulting
134# ${lispdir}. This should be a colon-separated list of
135# directories.
136locallisppath=@locallisppath@
137
138# Where Emacs will search to find its lisp files. Before
139# changing this, check to see if your purpose wouldn't
140# better be served by changing locallisppath. This
141# should be a colon-separated list of directories.
142lisppath=@lisppath@
143
144# Where Emacs will search for its lisp files while
145# building. This is only used during the process of
146# compiling Emacs, to help Emacs find its lisp files
147# before they've been installed in their final location.
148# It's usually identical to lisppath, except that
149# it does not include locallisppath, and the
150# entry for the directory containing the installed lisp
151# files has been replaced with ../lisp. This should be a
152# colon-separated list of directories.
153buildlisppath=${srcdir}/lisp
154
155# Where to install the other architecture-independent
156# data files distributed with Emacs (like the tutorial,
157# the cookie recipes and the Zippy database). This path
158# usually contains the Emacs version number, so the data
159# files for multiple versions of Emacs may be installed
160# at once.
161etcdir=@etcdir@
162
163# Where to put executables to be run by Emacs rather than
164# the user. This path usually includes the Emacs version
165# and configuration name, so that multiple configurations
166# for multiple versions of Emacs may be installed at
167# once.
168archlibdir=@archlibdir@
169
170# Where to put the docstring file.
171docdir=@docdir@
172
173# ==================== Utility Programs for the Build ====================
174
175# Allow the user to specify the install program.
176INSTALL = @INSTALL@
177INSTALL_PROGRAM = @INSTALL_PROGRAM@
178INSTALL_DATA = @INSTALL_DATA@
179INSTALL_INFO = install-info
180# By default, we uphold the dignity of our programs.
181INSTALL_STRIP =
182
183# ============================= Targets ==============================
184
185# What emacs should be called when installed.
186EMACS = emacs
187
188# Subdirectories to make recursively. `lisp' is not included
189# because the compiled lisp files are part of the distribution
190# and you cannot remake them without installing Emacs first.
191SUBDIR = lib-src src leim
192
193# The makefiles of the directories in $SUBDIR.
194SUBDIR_MAKEFILES = lib-src/Makefile man/Makefile src/Makefile oldXMenu/Makefile lwlib/Makefile leim/Makefile
195
196# Subdirectories to install, and where they'll go.
197# lib-src's makefile knows how to install it, so we don't do that here.
198# leim's makefile also knows how to install it, so we don't do that here.
199# When installing the info files, we need to do special things to
200# avoid nuking an existing dir file, so we don't do that here;
201# instead, we have written out explicit code in the `install' targets.
202COPYDIR = ${srcdir}/etc ${srcdir}/lisp
203COPYDESTS = ${etcdir} ${lispdir}
204
205all: ${SUBDIR}
206
207removenullpaths=sed -e 's/^://g' -e 's/:$$//g' -e 's/::/:/g'
208
209# Generate epaths.h from epaths.in. This target is invoked by `configure'.
210epaths-force: FRC
211 @(lisppath=`echo ${lisppath} | ${removenullpaths}` ; \
212 buildlisppath=`echo ${buildlisppath} | ${removenullpaths}` ; \
213 x_default_search_path=`echo ${x_default_search_path}`; \
214 sed < ${srcdir}/src/epaths.in > epaths.h.$$$$ \
215 -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'$${lisppath}'";' \
216 -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${buildlisppath}'";' \
217 -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";' \
218 -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \
219 -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \
220 -e 's;\(#.*PATH_BITMAPS\).*$$;\1 "${bitmapdir}";' \
221 -e 's;\(#.*PATH_X_DEFAULTS\).*$$;\1 "${x_default_search_path}";' \
222 -e 's;\(#.*PATH_DOC\).*$$;\1 "${docdir}";') && \
223 ${srcdir}/move-if-change epaths.h.$$$$ src/epaths.h
224
225# For parallel make, src should be build before leim.
226leim: src
227
228src: lib-src FRC
229
230lib-src: FRC src/config.stamp
231
232.RECURSIVE: ${SUBDIR}
233
234${SUBDIR}: ${SUBDIR_MAKEFILES} FRC
235 cd $@; $(MAKE) all $(MFLAGS) \
236 CC='${CC}' CFLAGS='${CFLAGS}' CPPFLAGS='${CPPFLAGS}' \
237 LDFLAGS='${LDFLAGS}' MAKE='${MAKE}'
238
239blessmail: ${SUBDIR_MAKEFILES} src FRC
240 cd lib-src; $(MAKE) maybe-blessmail $(MFLAGS) \
241 MAKE='${MAKE}' archlibdir='$(archlibdir)'
242
243Makefile: $(srcdir)/Makefile.in config.status
244 ./config.status
245
246config.status: configure
247 ./config.status --recheck
248
249${srcdir}/configure: configure.in aclocal.m4
250 cd ${srcdir} && autoconf
251
252src/Makefile: $(srcdir)/src/Makefile.in config.status
253 ./config.status
254
255src/config.stamp: $(srcdir)/src/config.in config.status
256 ./config.status
257 touch src/config.stamp
258
259lib-src/Makefile: $(srcdir)/lib-src/Makefile.in config.status
260 ./config.status
261
262man/Makefile: $(srcdir)/man/Makefile.in config.status
263 ./config.status
264
265oldXMenu/Makefile: $(srcdir)/oldXMenu/Makefile.in config.status
266 ./config.status
267
268lwlib/Makefile: $(srcdir)/lwlib/Makefile.in config.status
269 ./config.status
270
271leim/Makefile: $(srcdir)/leim/Makefile.in config.status
272 ./config.status
273
274# ==================== Installation ====================
275
276## If we let lib-src do its own installation, that means we
277## don't have to duplicate the list of utilities to install in
278## this Makefile as well.
279
280## On AIX, use tar xBf.
281## On Xenix, use tar xpf.
282
283.PHONY: install mkdir
284
285## We delete each directory in ${COPYDESTS} before we copy into it;
286## that way, we can reinstall over directories that have been put in
287## place with their files read-only (perhaps because they are checked
288## into RCS). In order to make this safe, we make sure that the
289## source exists and is distinct from the destination.
290### We do install-arch-indep first because
291### the executable needs the Lisp files and DOC file to work properly.
292install: all install-arch-indep install-arch-dep install-leim blessmail
293 @true
294
295### Install the executables that were compiled specifically for this machine.
296### It would be nice to do something for a parallel make
297### to ensure that install-arch-indep finishes before this starts.
298install-arch-dep: mkdir
299 (cd lib-src; \
300 $(MAKE) install $(MFLAGS) prefix=${prefix} \
301 exec_prefix=${exec_prefix} bindir=${bindir} \
302 libexecdir=${libexecdir} archlibdir=${archlibdir} \
303 INSTALL_STRIP=${INSTALL_STRIP})
304 ${INSTALL_PROGRAM} $(INSTALL_STRIP) src/emacs ${bindir}/emacs-${version}
305 -chmod 1755 ${bindir}/emacs-${version}
306 rm -f ${bindir}/$(EMACS)
307 -ln ${bindir}/emacs-${version} ${bindir}/$(EMACS)
308 -unset CDPATH; \
309 for f in `cd lib-src && echo fns-*.el`; do \
310 if test -r lib-src/$$f ; then \
311 ${INSTALL_DATA} lib-src/$$f ${archlibdir}/$$f; \
312 else true; fi ; \
313 done
314
315### Install the files that are machine-independent.
316### Most of them come straight from the distribution;
317### the exception is the DOC-* files, which are copied
318## from the build directory.
319
320## Note that we copy DOC* and then delete DOC
321## as a workaround for a bug in tar on Ultrix 4.2.
322install-arch-indep: mkdir info
323 -set ${COPYDESTS} ; \
324 unset CDPATH; \
325 for dir in ${COPYDIR} ; do \
326 if [ `(cd $$1 && /bin/pwd)` != `(cd $${dir} && /bin/pwd)` ] ; then \
327 rm -rf $$1 ; \
328 fi ; \
329 shift ; \
330 done
331 -set ${COPYDESTS} ; \
332 mkdir ${COPYDESTS} ; \
333 chmod ugo+rx ${COPYDESTS} ; \
334 unset CDPATH; \
335 for dir in ${COPYDIR} ; do \
336 dest=$$1 ; shift ; \
337 [ -d $${dir} ] \
338 && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \
339 && (echo "Copying $${dir} to $${dest}..." ; \
340 (cd $${dir}; tar -cf - . ) \
341 |(cd $${dest};umask 022; tar -xvf - && cat > /dev/null); \
342 for subdir in `find $${dest} -type d ! -name RCS ! -name CVS -print` ; do \
343 chmod a+rx $${subdir} ; \
344 rm -rf $${subdir}/RCS ; \
345 rm -rf $${subdir}/CVS ; \
346 rm -f $${subdir}/\#* ; \
347 rm -f $${subdir}/.\#* ; \
348 rm -f $${subdir}/*~ ; \
349 rm -f $${subdir}/*.orig ; \
350 rm -f $${subdir}/[mM]akefile* ; \
351 rm -f $${subdir}/ChangeLog* ; \
352 rm -f $${subdir}/dired.todo ; \
353 done) ; \
354 done
355 -rm -f ${lispdir}/subdirs.el
356 $(srcdir)/update-subdirs ${lispdir}
357 if [ -f ${datadir}/emacs/${version}/site-lisp/subdirs.el ]; \
358 then true; \
359 else \
360 (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \
361 echo " (normal-top-level-add-subdirs-to-load-path))") \
362 > ${datadir}/emacs/${version}/site-lisp/subdirs.el; \
363 fi
364 chmod a+r ${datadir}/emacs/${version}/site-lisp/subdirs.el
365 -if [ -f ${datadir}/emacs/site-lisp/subdirs.el ]; \
366 then true; \
367 else \
368 (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \
369 echo " (normal-top-level-add-subdirs-to-load-path))") \
370 > ${datadir}/emacs/site-lisp/subdirs.el; \
371 fi
372 -chmod a+r ${datadir}/emacs/site-lisp/subdirs.el
373 -unset CDPATH; \
374 if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \
375 then \
376 echo "Copying etc/DOC-* to ${docdir} ..." ; \
377 (cd ./etc; tar -cf - DOC*) \
378 |(cd ${docdir}; umask 0; tar -xvf - && cat > /dev/null); \
379 (cd $(docdir); chmod a+r DOC*; rm DOC); \
380 else true; fi
381 -unset CDPATH; \
382 if [ -r ./lisp ] \
383 && [ -r ./lisp/simple.el ] \
384 && [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ] \
385 && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \
386 then \
387 echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \
388 (cd lisp; tar -cf - *.el *.elc) \
389 |(cd ${lispdir}; umask 0; tar -xvf - && cat > /dev/null); \
390 else true; fi
391 -unset CDPATH; \
392 thisdir=`/bin/pwd`; \
393 if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \
394 then \
395 (cd ${infodir}; \
396 if [ -f dir ]; then true; \
397 else \
398 (cd $${thisdir}; \
399 ${INSTALL_DATA} ${srcdir}/info/dir ${infodir}/dir; \
400 chmod a+r ${infodir}/dir); \
401 fi; \
402 cd ${srcdir}/info ; \
403 for f in ada-mode* autotype* ccmode* cl* dired-x* ebrowse* ediff* efaq* emacs* eudc* forms* gnus* idlwave* info* message* mh-e* reftex* sc* vip* widget* pcl-cvs; do \
404 (cd $${thisdir}; \
405 ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f; \
406 chmod a+r ${infodir}/$$f); \
407 done); \
408 else true; fi
409 -unset CDPATH; \
410 thisdir=`/bin/pwd`; \
411 if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \
412 then \
413 for f in ada-mode autotype ccmode cl dired-x ediff efaq emacs eudc forms gnus idlwave info message mh-e reftex sc vip viper widget pcl-cvs; do \
414 (cd $${thisdir}; \
415 ${INSTALL_INFO} --dir-file=${infodir}/dir --info-file=${infodir}/$$f); \
416 done; \
417 else true; fi
418 -chmod -R a+r ${datadir}/emacs ${COPYDESTS} ${infodir}
419 thisdir=`/bin/pwd`; \
420 cd ${srcdir}/etc; \
421 for page in emacs etags ctags ; do \
422 (cd $${thisdir}; \
423 ${INSTALL_DATA} ${srcdir}/etc/$${page}.1 ${man1dir}/$${page}${manext}; \
424 chmod a+r ${man1dir}/$${page}${manext}); \
425 done
426
427### Install LEIM files. Although they are machine-independent, we
428### have separate target here instead of including it in
429### `install-arch-indep'. People who extracted LEIM files after they
430### insalled Emacs itself can install only LEIM files by this target.
431install-leim: leim/Makefile mkdir
432 cd leim; $(MAKE) install
433
434### Build Emacs and install it, stripping binaries while installing them.
435install-strip:
436 $(MAKE) INSTALL_STRIP=-s install
437
438### Build all the directories we're going to install Emacs in. Since
439### we may be creating several layers of directories (for example,
440### /usr/local/lib/emacs/19.0/mips-dec-ultrix4.2), we use mkinstalldirs
441### instead of mkdir. Not all systems' mkdir programs have the `-p' flag.
442mkdir: FRC
443 if [ -d ${datadir} ]; then true; else \
444 $(srcdir)/mkinstalldirs ${datadir}; \
445 chmod a+r ${datadir};\
446 fi
447 $(srcdir)/mkinstalldirs ${COPYDESTS} ${infodir} ${man1dir} \
448 ${bindir} ${docdir} ${libexecdir} \
449 ${datadir}/emacs/site-lisp \
450 ${datadir}/emacs/${version}/site-lisp \
451 `echo ${locallisppath} | sed 's/:/ /g'`
452
453### Delete all the installed files that the `install' target would
454### create (but not the noninstalled files such as `make all' would
455### create).
456###
457### Don't delete the lisp and etc directories if they're in the source tree.
458uninstall:
459 (cd lib-src; \
460 $(MAKE) $(MFLAGS) uninstall \
461 prefix=${prefix} exec_prefix=${exec_prefix} \
462 bindir=${bindir} libexecdir=${libexecdir} archlibdir=${archlibdir})
463 -unset CDPATH; \
464 for dir in ${lispdir} ${etcdir} ; do \
465 if [ -d $${dir} ]; then \
466 case `(cd $${dir} ; /bin/pwd)` in \
467 `(cd ${srcdir} ; /bin/pwd)`* ) ;; \
468 * ) rm -rf $${dir} ;; \
469 esac ; \
470 case $${dir} in \
471 ${datadir}/emacs/${version}/* ) \
472 rm -rf ${datadir}/emacs/${version} \
473 ;; \
474 esac ; \
475 fi ; \
476 done
477 (cd ${infodir} && rm -f cl* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*)
478 (cd ${man1dir} && rm -f emacs.1 etags.1 ctags.1)
479 (cd ${bindir} && rm -f emacs-${version} $(EMACS))
480
481
482FRC:
483
484# ==================== Cleaning up and miscellanea ====================
485
486.PHONY: mostlyclean clean distclean maintainer-clean extraclean
487
488### `mostlyclean'
489### Like `clean', but may refrain from deleting a few files that people
490### normally don't want to recompile. For example, the `mostlyclean'
491### target for GCC does not delete `libgcc.a', because recompiling it
492### is rarely necessary and takes a lot of time.
493mostlyclean: FRC
494 (cd src; $(MAKE) $(MFLAGS) mostlyclean)
495 (cd oldXMenu; $(MAKE) $(MFLAGS) mostlyclean)
496 (cd lwlib; $(MAKE) $(MFLAGS) mostlyclean)
497 (cd lib-src; $(MAKE) $(MFLAGS) mostlyclean)
498 -(cd man && $(MAKE) $(MFLAGS) mostlyclean)
499 (cd leim; $(MAKE) $(MFLAGS) mostlyclean)
500
501### `clean'
502### Delete all files from the current directory that are normally
503### created by building the program. Don't delete the files that
504### record the configuration. Also preserve files that could be made
505### by building, but normally aren't because the distribution comes
506### with them.
507###
508### Delete `.dvi' files here if they are not part of the distribution.
509clean: FRC
510 (cd src; $(MAKE) $(MFLAGS) clean)
511 (cd oldXMenu; $(MAKE) $(MFLAGS) clean)
512 (cd lwlib; $(MAKE) $(MFLAGS) clean)
513 (cd lib-src; $(MAKE) $(MFLAGS) clean)
514 -(cd man && $(MAKE) $(MFLAGS) clean)
515 (cd leim; $(MAKE) $(MFLAGS) clean)
516
517### `distclean'
518### Delete all files from the current directory that are created by
519### configuring or building the program. If you have unpacked the
520### source and built the program without creating any other files,
521### `make distclean' should leave only the files that were in the
522### distribution.
523top_distclean=\
524 rm -f config.status config.cache config.log ; \
525 rm -f Makefile ${SUBDIR_MAKEFILES} ; \
526 if [ -d lock ] ; then (cd lock && (rm -f * || true)); else true; fi
527distclean: FRC
528 (cd src; $(MAKE) $(MFLAGS) distclean)
529 (cd oldXMenu; $(MAKE) $(MFLAGS) distclean)
530 (cd lwlib; $(MAKE) $(MFLAGS) distclean)
531 (cd lib-src; $(MAKE) $(MFLAGS) distclean)
532 (cd man && $(MAKE) $(MFLAGS) distclean)
533 (cd leim; $(MAKE) $(MFLAGS) distclean)
534 (cd lisp; $(MAKE) $(MFLAGS) distclean)
535 ${top_distclean}
536
537### `maintainer-clean'
538### Delete everything from the current directory that can be
539### reconstructed with this Makefile. This typically includes
540### everything deleted by distclean, plus more: C source files
541### produced by Bison, tags tables, info files, and so on.
542###
543### One exception, however: `make maintainer-clean' should not delete
544### `configure' even if `configure' can be remade using a rule in the
545### Makefile. More generally, `make maintainer-clean' should not delete
546### anything that needs to exist in order to run `configure' and then
547### begin to build the program.
548maintainer-clean: FRC
549 (cd src; $(MAKE) $(MFLAGS) maintainer-clean)
550 (cd oldXMenu; $(MAKE) $(MFLAGS) maintainer-clean)
551 (cd lwlib; $(MAKE) $(MFLAGS) maintainer-clean)
552 (cd lib-src; $(MAKE) $(MFLAGS) maintainer-clean)
553 -(cd man && $(MAKE) $(MFLAGS) maintainer-clean)
554 (cd leim; $(MAKE) $(MFLAGS) maintainer-clean)
555 ${top_distclean}
556
557### This doesn't actually appear in the coding standards, but Karl
558### says GCC supports it, and that's where the configuration part of
559### the coding standards seem to come from. It's like distclean, but
560### it deletes backup and autosave files too.
561extraclean:
562 for i in ${SUBDIR}; do (cd $$i; $(MAKE) $(MFLAGS) extraclean); done
563 ${top_distclean}
564 -rm config-tmp-*
565 -rm -f *~ \#*
566
567### Unlocking and relocking. The idea of these productions is to reduce
568### hassles when installing an incremental tar of Emacs. Do `make unlock'
569### before unlocking the file to take the write locks off all sources so
570### that tar xvof will overwrite them without fuss. Then do `make relock'
571### afterward so that VC mode will know which files should be checked in
572### if you want to mung them.
573###
574### Note: it's no disaster if these productions miss a file or two; tar
575### and VC will swiftly let you know if this happens, and it is easily
576### corrected.
577SOURCES = ChangeLog GETTING.GNU.SOFTWARE INSTALL Makefile.in \
578 README configure make-dist move-if-change
579
580.PHONY: unlock relock
581
582unlock:
583 chmod u+w $(SOURCES)
584 -(cd elisp; chmod u+w Makefile README *.texi)
585 (cd etc; $(MAKE) $(MFLAGS) unlock)
586 (cd lib-src; $(MAKE) $(MFLAGS) unlock)
587 (cd lisp; $(MAKE) $(MFLAGS) unlock)
588 (cd lisp/term; chmod u+w README *.el)
589 (cd man; chmod u+w *texi* ChangeLog split-man)
590 (cd oldXMenu; chmod u+w *.[ch] Makefile README)
591 (cd lwlib; chmod u+w *.[ch] Makefile README)
592 (cd src; $(MAKE) $(MFLAGS) unlock)
593
594relock:
595 chmod u-w $(SOURCES)
596 -(cd elisp; chmod u-w Makefile README *.texi)
597 (cd etc; $(MAKE) $(MFLAGS) relock)
598 (cd lib-src; $(MAKE) $(MFLAGS) relock)
599 (cd lisp; $(MAKE) $(MFLAGS) relock)
600 (cd lisp/term; chmod u+w README *.el)
601 (cd man; chmod u+w *texi* ChangeLog split-man)
602 (cd oldXMenu; chmod u+w *.[ch] Makefile README)
603 (cd lwlib; chmod u+w *.[ch] Makefile README)
604 (cd src; $(MAKE) $(MFLAGS) relock)
605
606TAGS tags: lib-src src
607 # The src subdir knows how to do the right thing
608 # even when the build directory and source dir are different.
609 cd src; $(MAKE) tags
610
611check:
612 @echo "We don't have any tests for GNU Emacs yet."
613
614dist:
615 cd ${srcdir}; ./make-dist
616
617.PHONY: info dvi dist check html
618force-info:
619info: force-info
620 # Note that man/Makefile knows how to
621 # put the info files in $(srcdir),
622 # so we can do ok running make in the build dir.
623 (cd man; $(MAKE) $(MFLAGS) info)
624dvi:
625 (cd man; $(MAKE) $(MFLAGS) dvi)
626
627#### Bootstrapping.
628
629### This is meant for Emacs maintainers only. It first cleans the
630### lisp subdirectory, removing all compiled Lisp files. Then a
631### special emacs executable is built from Lisp sources, which is then
632### used to compile Lisp files. The last step is a "normal" make.
633
634bootstrap: clean bootstrap-lisp-1 bootstrap-src bootstrap-lisp clean all info
635
636bootstrap-lisp-1:
637 (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean)
638
639bootstrap-lisp:
640 -(cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs)
641
642bootstrap-src:
643 (cd src; $(MAKE) $(MFLAGS) bootstrap)