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