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