(bibtex-mode): Add autoload.
[emacs.git] / Makefile.in
blob071a99e4f6aea87c77bc3724a107b167e348f4e2
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.
5 # make all to compile and build Emacs.
6 # make install to install it.
7 # make TAGS to update tags tables.
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.
16 # Delete `.dvi' files here if they are not part of the distribution.
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.
25 # make realclean
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.
31 # make extraclean
32 # Still more severe - delete backup and autosave files, too.
34 SHELL = /bin/sh
35 MAKE = make # BSD doesn't have it as a default.
37 # ==================== Things `configure' Might Edit ====================
39 CC=@CC@
40 C_SWITCH_SYSTEM=@c_switch_system@
41 ALLOCA=@ALLOCA@
42 LN_S=@LN_S@
43 CFLAGS=@CFLAGS@
44 C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
45 LD_SWITCH_X_SITE=@LD_SWITCH_X_SITE@
47 ### These help us choose version- and architecture-specific directories
48 ### to install files in.
50 ### This should be the number of the Emacs version we're building,
51 ### like `18.59' or `19.0'.
52 version=@version@
54 ### This should be the name of the configuration we're building Emacs
55 ### for, like `mips-dec-ultrix' or `sparc-sun-sunos'.
56 configuration=@configuration@
58 ### Libraries which should be edited into lib-src/Makefile.
59 libsrc_libs=@libsrc_libs@
61 # ==================== Where To Install Things ====================
63 # The default location for installation. Everything is placed in
64 # subdirectories of this directory. The default values for many of
65 # the variables below are expressed in terms of this one, so you may
66 # not need to change them. This defaults to /usr/local.
67 prefix=@prefix@
69 # Like `prefix', but used for architecture-specific files.
70 exec_prefix=@exec_prefix@
72 # Where to install Emacs and other binaries that people will want to
73 # run directly (like etags).
74 bindir=${exec_prefix}/bin
76 # Where to install architecture-independent data files. ${lispdir}
77 # and ${etcdir} are subdirectories of this.
78 datadir=${prefix}/lib
80 # Where to install and expect the files that Emacs modifies as it
81 # runs. These files are all architecture-independent. Right now, the
82 # only such data is the locking directory; ${lockdir} is a
83 # subdirectory of this.
84 statedir=${prefix}/lib
86 # Where to install and expect executable files to be run by Emacs
87 # rather than directly by users, and other architecture-dependent
88 # data. ${archlibdir} is a subdirectory of this.
89 libdir=${exec_prefix}/lib
91 # Where to install Emacs's man pages, and what extension they should have.
92 mandir=${prefix}/man/man1
93 manext=.1
95 # Where to install and expect the info files describing Emacs. In the
96 # past, this defaulted to a subdirectory of ${prefix}/lib/emacs, but
97 # since there are now many packages documented with the texinfo
98 # system, it is inappropriate to imply that it is part of Emacs.
99 infodir=${prefix}/info
101 # Where to find the source code. The source code for Emacs's C kernel is
102 # expected to be in ${srcdir}/src, and the source code for Emacs's
103 # utility programs is expected to be in ${srcdir}/lib-src. This is
104 # set by the configure script's `--srcdir' option.
105 srcdir=@srcdir@
107 # ==================== Emacs-specific directories ====================
109 # These variables hold the values Emacs will actually use. They are
110 # based on the values of the standard Make variables above.
112 @inst_paths@# Where to install the lisp files distributed with
113 @inst_paths@# Emacs. This includes the Emacs version, so that the
114 @inst_paths@# lisp files for different versions of Emacs will install
115 @inst_paths@# themselves in separate directories.
116 @inst_paths@lispdir=${datadir}/emacs/${version}/lisp
118 @inst_paths@# Directories Emacs should search for lisp files specific
119 @inst_paths@# to this site (i.e. customizations), before consulting
120 @inst_paths@# ${lispdir}. This should be a colon-separated list of
121 @inst_paths@# directories.
122 @inst_paths@locallisppath=${datadir}/emacs/site-lisp
124 # Where Emacs will search to find its lisp files. Before
125 # changing this, check to see if your purpose wouldn't
126 # better be served by changing locallisppath. This
127 # should be a colon-separated list of directories.
128 lisppath=${locallisppath}:${lispdir}
130 # Where Emacs will search for its lisp files while
131 # building. This is only used during the process of
132 # compiling Emacs, to help Emacs find its lisp files
133 # before they've been installed in their final location.
134 # It's usually identical to lisppath, except that the
135 # entry for the directory containing the installed lisp
136 # files has been replaced with ../lisp. This should be a
137 # colon-separated list of directories.
138 buildlisppath=${srcdir}/lisp
140 @inst_paths@# Where to install the other architecture-independent
141 @inst_paths@# data files distributed with Emacs (like the tutorial,
142 @inst_paths@# the cookie recipes and the Zippy database). This path
143 @inst_paths@# usually contains the Emacs version number, so the data
144 @inst_paths@# files for multiple versions of Emacs may be installed
145 @inst_paths@# at once.
146 @inst_paths@etcdir=${datadir}/emacs/${version}/etc
148 @inst_paths@# Where to create and expect the locking directory, where
149 @inst_paths@# the Emacs locking code keeps track of which files are
150 @inst_paths@# currently being edited.
151 @inst_paths@lockdir=${statedir}/emacs/lock
153 @inst_paths@# Where to put executables to be run by Emacs rather than
154 @inst_paths@# the user. This path usually includes the Emacs version
155 @inst_paths@# and configuration name, so that multiple configurations
156 @inst_paths@# for multiple versions of Emacs may be installed at
157 @inst_paths@# once.
158 @inst_paths@archlibdir=${libdir}/emacs/${version}/${configuration}
160 # ====================== Developer's configuration =======================
162 # The following assignments make sense if you're running Emacs on a single
163 # machine, one version at a time, and you want changes to the lisp and etc
164 # directories in the source tree to show up immediately in your working
165 # environment. It saves a great deal of disk space by not duplicating the
166 # lisp and etc directories.
168 @rip_paths@lispdir=${srcdir}/lisp
169 @rip_paths@externallispdir=${srcdir}/externallisp
170 @rip_paths@locallisppath=${srcdir}/site-lisp:${datadir}/emacs/site-lisp
171 @rip_paths@etcdir=${srcdir}/etc
172 @rip_paths@lockdir=${srcdir}/lock
173 @rip_paths@archlibdir=${srcdir}/lib-src
174 @rip_paths@infodir=${srcdir}/info
176 # ==================== Utility Programs for the Build ====================
178 # Allow the user to specify the install program.
179 INSTALL = @INSTALL@
180 INSTALL_PROGRAM = @INSTALL_PROGRAM@
181 INSTALL_DATA = @INSTALL_DATA@
183 # ============================= Targets ==============================
185 # Flags passed down to subdirectory makefiles.
186 MFLAGS =
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.
191 SUBDIR = lib-src src
193 # The makefiles of the directories in $SUBDIR.
194 SUBDIR_MAKEFILES = lib-src/Makefile src/Makefile oldXMenu/Makefile
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 # When installing the info files, we need to do special things to
199 # avoid nuking an existing dir file, so we don't do that here;
200 # instead, we have written out explicit code in the `install' targets.
201 COPYDIR = ${srcdir}/etc ${srcdir}/lisp
202 COPYDESTS = ${etcdir} ${lispdir}
204 all: src/paths.h ${SUBDIR}
206 removenullpaths=sed -e 's/^://' -e 's/:$$//' -e 's/::/:/'
208 # We force the rebuilding of src/paths.h because the user might give
209 # make different values for the various directories. Since we use
210 # move-if-change, src/paths.h only actually changes if the user did
211 # something notable, so the only unnecessary work we do is in building
212 # src/paths.h.tmp, which isn't much.
213 # Note that sed is not in /bin on 386bsd.
214 src/paths.h: Makefile ${srcdir}/src/paths.h.in FRC.src.paths.h
215 @echo "Producing \`src/paths.h' from \`src/paths.h.in'."
216 @(lisppath=`echo ${lisppath} | ${removenullpaths}` ; \
217 buildlisppath=`echo ${buildlisppath} | ${removenullpaths}` ; \
218 sed < ${srcdir}/src/paths.h.in > src/paths.h.tmp \
219 -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'$${lisppath}'";' \
220 -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${buildlisppath}'";' \
221 -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";' \
222 -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \
223 -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \
224 -e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";')
225 @${srcdir}/move-if-change src/paths.h.tmp src/paths.h
227 src: lib-src FRC.src
228 lib-src: FRC.lib-src
230 .RECURSIVE: ${SUBDIR}
232 ${SUBDIR}: ${SUBDIR_MAKEFILES} FRC
233 cd $@; $(MAKE) all ${MFLAGS} \
234 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
235 prefix='${prefix}' srcdir='${srcdir}/$@' libdir='${libdir}'
237 ## We build the makefiles for the subdirectories here so that we can
238 ## edit the values for the path variables into them. This means that
239 ## when the user has built them from this makefile once, they will use
240 ## the right default values for the path variables.
241 lib-src/Makefile: ${srcdir}/lib-src/Makefile.in Makefile
242 rm -f lib-src/Makefile.tmp
243 @echo "Producing \`lib-src/Makefile' from \`${srcdir}/lib-src/Makefile.in'."
244 @(echo "# This file is generated from \`${srcdir}/lib-src/Makefile.in'." ; \
245 echo "# If you are thinking about editing it, you should seriously consider" ; \
246 echo "# running \`make lib-src/Makefile' at the top of the" ; \
247 echo "# Emacs build tree instead, or editing" ; \
248 echo "# \`${srcdir}/lib-src/Makefile.in' itself." ; \
249 sed < ${srcdir}/lib-src/Makefile.in \
250 -e 's|^\(version *=\).*$$|\1'"${version}"'|' \
251 -e 's|^\(configname *=\).*$$|\1'"${configuration}"'|' \
252 -e 's|^\(prefix *=\).*$$|\1'"${prefix}"'|' \
253 -e 's|^\(exec_prefix *=\).*$$|\1'"${exec_prefix}"'|' \
254 -e 's|^\(libdir *=\).*$$|\1'"${libdir}"'|' \
255 -e 's|^\(srcdir *=\).*$$|\1'"${srcdir}"'/lib-src|' \
256 -e 's|^\(VPATH *=\).*$$|\1'"${srcdir}"'/lib-src|' \
257 -e 's|^\(archlibdir *=\).*$$|\1'"${archlibdir}"'|' \
258 -e 's|^\(ALLOCA *=\).*$$|\1'"${ALLOCA}"'|' \
259 -e 's|^CC *=.*$$|CC='"${CC}"'|' \
260 -e 's|^CFLAGS *=.*$$|CFLAGS='"${CFLAGS}"'|' \
261 -e 's|^C_SWITCH_SYSTEM *=.*$$|C_SWITCH_SYSTEM='"${C_SWITCH_SYSTEM}"'|' \
262 -e 's|^LOADLIBES *=.*$$|LOADLIBES='"${libsrc_libs}"'|' \
263 -e '/^# DIST: /d') > lib-src/Makefile.tmp
264 @${srcdir}/move-if-change lib-src/Makefile.tmp lib-src/Makefile
265 chmod -w lib-src/Makefile
267 src/Makefile: ${srcdir}/src/Makefile.in Makefile
268 rm -f src/Makefile.tmp
269 @echo "Producing \`src/Makefile' from \`${srcdir}/src/Makefile.in'."
270 @(echo "# This file is generated from \`${srcdir}/src/Makefile.in'." ; \
271 echo "# If you are thinking about editing it, you should seriously consider" ; \
272 echo "# running \`make src/Makefile' at the top of the" ; \
273 echo "# Emacs build tree instead, or editing" ; \
274 echo "# \`${srcdir}/src/Makefile.in' itself." ; \
275 sed < ${srcdir}/src/Makefile.in \
276 -e 's|^\(srcdir *=\).*$$|\1'"${srcdir}"'/src|' \
277 -e 's|^\(VPATH *=\).*$$|\1'"${srcdir}"'/src|' \
278 -e 's|^CC *=.*$$|CC='"${CC}"'|' \
279 -e 's|^LN_S *=.*$$|LN_S='"${LN_S}"'|' \
280 -e 's|^CFLAGS *=.*$$|CFLAGS='"${CFLAGS}"'|' \
281 -e '/^# DIST: /d') > src/Makefile.tmp
282 @${srcdir}/move-if-change src/Makefile.tmp src/Makefile
283 chmod -w src/Makefile
285 oldXMenu/Makefile: ${srcdir}/oldXMenu/Makefile.in Makefile
286 rm -f oldXMenu/Makefile.tmp
287 @echo "Producing \`oldXMenu/Makefile' from \`${srcdir}/oldXMenu/Makefile.in'."
288 @(echo "# This file is generated from \`${srcdir}/oldXMenu/Makefile.in'." ; \
289 echo "# If you are thinking about editing it, you should seriously consider" ; \
290 echo "# running \`make oldXMenu/Makefile' at the top of the" ; \
291 echo "# Emacs build tree instead, or editing" ; \
292 echo "# \`${srcdir}/oldXMenu/Makefile.in' itself." ; \
293 sed < ${srcdir}/oldXMenu/Makefile.in \
294 -e 's|^\(srcdir *=\).*$$|\1'"${srcdir}"'/oldXMenu|' \
295 -e 's|^\(VPATH *=\).*$$|\1'"${srcdir}"'/oldXMenu|' \
296 -e 's|^\(C_SWITCH_X_SITE *=\).*$$|\1'"${C_SWITCH_X_SITE}"'|' \
297 -e 's|^CC *=.*$$|CC='"${CC}"'|' \
298 -e 's|^DEFS *=.*$$|DEFS='"${DEFS}"'|' \
299 -e '/^# DIST: /d') > oldXMenu/Makefile.tmp
300 @${srcdir}/move-if-change oldXMenu/Makefile.tmp oldXMenu/Makefile
301 chmod -w oldXMenu/Makefile
303 Makefile:
304 ./config.status
306 # ==================== Installation ====================
308 ## If we let lib-src do its own installation, that means we
309 ## don't have to duplicate the list of utilities to install in
310 ## this Makefile as well.
312 ## On AIX, use tar xBf.
313 ## On Xenix, use tar xpf.
315 ## We delete each directory in ${COPYDESTS} before we copy into it;
316 ## that way, we can reinstall over directories that have been put in
317 ## place with their files read-only (perhaps because they are checked
318 ## into RCS). In order to make this safe, we make sure that the
319 ## source exists and is distinct from the destination.
320 install: all do-install
322 ### Note that we copy the DOC-* files from the build etc directory
323 ### as well as lots of things from ${srcdir}/etc.
324 do-install: mkdir
325 (cd lib-src; \
326 $(MAKE) install ${MFLAGS} prefix=${prefix} \
327 exec_prefix=${exec_prefix} bindir=${bindir} libdir=${libdir} \
328 archlibdir=${archlibdir})
329 -set ${COPYDESTS} ; \
330 for dir in ${COPYDIR} ; do \
331 if [ `(cd $$1 && pwd)` != `(cd $${dir} && pwd)` ] ; then \
332 rm -rf $$1 ; \
333 fi ; \
334 shift ; \
335 done
336 -set ${COPYDESTS} ; \
337 mkdir ${COPYDESTS} ; \
338 for dir in ${COPYDIR} ; do \
339 dest=$$1 ; shift ; \
340 [ -d $${dir} ] \
341 && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \
342 && (echo "Copying $${dir}..." ; \
343 (cd $${dir}; tar -cf - . )|(cd $${dest};umask 0; tar -xvf - ); \
344 for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
345 rm -rf $${subdir}/RCS ; \
346 rm -rf $${subdir}/CVS ; \
347 rm -f $${subdir}/\#* ; \
348 rm -f $${subdir}/*~ ; \
349 done) ; \
350 done
351 [ `(cd etc; /bin/pwd)` != `(cd ${srcdir}/etc; /bin/pwd)` ] \
352 && (echo "Copying etc/DOC* ..." ; \
353 (cd etc; tar -cf - DOC*)|(cd ${etcdir}; umask 0; tar -xvf - ))
354 -[ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ] \
355 && (cd ${srcdir}/info ; \
356 if [ ! -f ${infodir}/dir ] && [ -f dir ]; then \
357 ${INSTALL_DATA} dir ${infodir}/dir ; \
358 fi ; \
359 for f in cl* emacs* forms* info* vip* ; do \
360 ${INSTALL_DATA} $$f ${infodir}/$$f ; \
361 done)
362 cd ${srcdir}/etc; for page in emacs etags ctags ; do \
363 ${INSTALL_DATA} $${page}.1 ${mandir}/$${page}${manext} ; \
364 done
365 ${INSTALL_PROGRAM} src/emacs ${bindir}/emacs-${version}
366 chmod 1755 ${bindir}/emacs-${version}
367 rm -f ${bindir}/emacs
368 ln ${bindir}/emacs-${version} ${bindir}/emacs
370 ### Build all the directories we're going to install Emacs in. Since
371 ### we may be creating several layers of directories (for example,
372 ### /usr/local/lib/emacs/19.0/mips-dec-ultrix4.2), we use make-path
373 ### instead of mkdir. Not all systems' mkdirs have the `-p' flag.
374 mkdir: FRC.mkdir
375 ./lib-src/make-path ${COPYDESTS} ${lockdir} ${infodir} ${mandir} \
376 ${bindir} ${datadir} ${libdir} \
377 `echo ${locallisppath} | sed 's/:/ /'`
378 chmod 777 ${COPYDESTS} ${lockdir}
380 ### Some makes seem to remember that they've built something called FRC,
381 ### so you can only use a given FRC once per makefile.
382 FRC FRC.src.paths.h FRC.src FRC.lib-src FRC.mkdir:
385 # ==================== Cleaning up and miscellanea ====================
387 ### `clean'
388 ### Delete all files from the current directory that are normally
389 ### created by building the program. Don't delete the files that
390 ### record the configuration. Also preserve files that could be made
391 ### by building, but normally aren't because the distribution comes
392 ### with them.
393 ### `mostlyclean'
394 ### Like `clean', but may refrain from deleting a few files that
395 ### people normally don't want to recompile. For example, the
396 ### `mostlyclean' target for GCC does not delete `libgcc.a', because
397 ### recompiling it is rarely necessary and takes a lot of time.
398 ###
399 clean mostlyclean:
400 cd src; $(MAKE) clean
401 cd lib-src; $(MAKE) clean
402 cd oldXMenu; $(MAKE) clean
403 if [ `(cd ${etcdir} && /bin/pwd)` != `(cd etc && /bin/pwd)` ] ; then \
404 cd etc; $(MAKE) clean; \
405 else true; \
408 ### `distclean'
409 ### Delete all files from the current directory that are created by
410 ### configuring or building the program. This should leave only the
411 ### files that would be in the distribution.
412 distclean:
413 for i in ${SUBDIR}; do (cd $$i; $(MAKE) ${MFLAGS} distclean); done
414 -(cd lock; rm *)
415 -rm config.status config-tmp-*
417 ### `realclean'
418 ### Delete everything from the current directory that can be
419 ### reconstructed with this makefile. This typically includes
420 ### everything deleted by distclean, plus more: C source files
421 ### produced by Bison, tags tables, info files, and so on.
422 realclean:
423 for i in ${SUBDIR}; do (cd $$i; $(MAKE) ${MFLAGS} realclean); done
424 (cd lock; rm *)
425 rm config.status
427 ### This doesn't actually appear in the coding standards, but Karl
428 ### says GCC supports it, and that's where the configuration part of
429 ### the coding standards seem to come from. It's like distclean, but
430 ### it deletes backup and autosave files too.
431 extraclean:
432 for i in ${SUBDIR}; do (cd $$i; $(MAKE) ${MFLAGS} extraclean); done
433 -(cd lock; rm *)
434 -rm config.status config-tmp-*
435 -rm -f *~ \#*
437 ### Unlocking and relocking. The idea of these productions is to reduce
438 ### hassles when installing an incremental tar of Emacs. Do `make unlock'
439 ### before unlocking the file to take the write locks off all sources so
440 ### that tar xvof will overwrite them without fuss. Then do `make relock'
441 ### afterward so that VC mode will know which files should be checked in
442 ### if you want to mung them.
444 ### Note: it's no disaster if these productions miss a file or two; tar
445 ### and VC will swiftly let you know if this happens, and it is easily
446 ### corrected.
447 SOURCES = ChangeLog GETTING.GNU.SOFTWARE INSTALL Makefile.in PROBLEMS \
448 README build-install.in configure make-dist move-if-change
450 unlock:
451 chmod u+w $(SOURCES) cpp/*
452 -(cd elisp; chmod u+w Makefile README *.texi)
453 (cd etc; make unlock)
454 (cd lib-src; make unlock)
455 (cd lisp; make unlock)
456 (cd lisp/term; chmod u+w README *.el)
457 (cd man; chmod u+w *texi* ChangeLog split-man)
458 (cd oldXMenu; chmod u+w *.[ch] Makefile README)
459 (cd src; make unlock)
461 relock:
462 chmod u-w $(SOURCES) cpp/*
463 -(cd elisp; chmod u-w Makefile README *.texi)
464 (cd etc; make relock)
465 (cd lib-src; make relock)
466 (cd lisp; make relock)
467 (cd lisp/term; chmod u+w README *.el)
468 (cd man; chmod u+w *texi* ChangeLog split-man)
469 (cd oldXMenu; chmod u+w *.[ch] Makefile README)
470 (cd src; make relock)
472 TAGS tags: lib-src
473 (cd ${srcdir} ; lib-src/etags --output=./src/TAGS \
474 src/*.[ch] lisp/*.el lisp/term/*.el)
476 check:
477 @echo "We don't have any tests for GNU Emacs yet."
479 dist:
480 cd ${srcdir}; make-dist