0
|
1 # DIST: This is the distribution Makefile for XEmacs. configure can
|
|
2 # DIST: make most of the changes to this file you might want, so try
|
|
3 # DIST: that first.
|
|
4
|
70
|
5 # This file is part of XEmacs.
|
|
6
|
|
7 # XEmacs is free software; you can redistribute it and/or modify it
|
|
8 # under the terms of the GNU General Public License as published by the
|
|
9 # Free Software Foundation; either version 2, or (at your option) any
|
|
10 # later version.
|
|
11
|
|
12 # XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 # for more details.
|
|
16
|
|
17 # You should have received a copy of the GNU General Public License
|
|
18 # along with XEmacs; see the file COPYING. If not, write to
|
|
19 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 # Boston, MA 02111-1307, USA.
|
|
21
|
0
|
22 # make all to compile and build XEmacs.
|
|
23 # make install to install it.
|
|
24 # make TAGS to update tags tables.
|
|
25 #
|
|
26 # make clean or make mostlyclean
|
|
27 # Delete all files from the current directory that are normally
|
|
28 # created by building the program. Don't delete the files that
|
|
29 # record the configuration. Also preserve files that could be made
|
|
30 # by building, but normally aren't because the distribution comes
|
|
31 # with them.
|
|
32 #
|
|
33 # Delete `.dvi' files here if they are not part of the distribution.
|
|
34 #
|
|
35 # make distclean
|
|
36 # Delete all files from the current directory that are created by
|
|
37 # configuring or building the program. If you have unpacked the
|
|
38 # source and built the program without creating any other files,
|
|
39 # `make distclean' should leave only the files that were in the
|
|
40 # distribution.
|
|
41 #
|
|
42 # make realclean
|
|
43 # Delete everything from the current directory that can be
|
|
44 # reconstructed with this Makefile. This typically includes
|
|
45 # everything deleted by distclean, plus more: C source files
|
|
46 # produced by Bison, tags tables, info files, and so on.
|
|
47 #
|
|
48 # make extraclean
|
|
49 # Still more severe - delete backup and autosave files, too.
|
|
50
|
|
51 SHELL = /bin/sh
|
|
52 @SET_MAKE@
|
|
53
|
|
54 # ==================== Things `configure' Might Edit ====================
|
|
55
|
|
56 CC=@CC@
|
|
57 CPP=@CPP@
|
|
58 C_SWITCH_SYSTEM=@c_switch_system@
|
|
59 LN_S=@LN_S@
|
|
60 CFLAGS=@CFLAGS@
|
|
61 C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
|
|
62 LD_SWITCH_X_SITE=@LD_SWITCH_X_SITE@
|
|
63 YACC=@YACC@
|
|
64
|
|
65 ### These help us choose version- and architecture-specific directories
|
|
66 ### to install files in.
|
|
67
|
|
68 ### This should be the number of the XEmacs version we're building,
|
70
|
69 ### like `19.12' or `19.13'.
|
0
|
70 version=@version@
|
|
71
|
|
72 ### This should be the name of the configuration we're building XEmacs
|
|
73 ### for, like `mips-dec-ultrix' or `sparc-sun-sunos'.
|
|
74 configuration=@configuration@
|
|
75
|
|
76 ### Libraries which should be edited into lib-src/Makefile.
|
|
77 libsrc_libs=@libsrc_libs@
|
|
78
|
|
79 # ==================== Where To Install Things ====================
|
|
80
|
|
81 # The default location for installation. Everything is placed in
|
|
82 # subdirectories of this directory. The default values for many of
|
|
83 # the variables below are expressed in terms of this one, so you may
|
|
84 # not need to change them. This defaults to /usr/local.
|
|
85 prefix=@prefix@
|
|
86
|
|
87 # Like `prefix', but used for architecture-specific files.
|
|
88 exec_prefix=@exec_prefix@
|
|
89
|
|
90 # Where to install XEmacs and other binaries that people will want to
|
|
91 # run directly (like etags).
|
|
92 bindir=@bindir@
|
|
93
|
|
94 # Where to install architecture-independent data files. ${lispdir}
|
|
95 # and ${etcdir} are subdirectories of this.
|
|
96 datadir=@datadir@
|
|
97
|
|
98 # Where to install and expect the files that XEmacs modifies as it
|
|
99 # runs. These files are all architecture-independent. Right now, the
|
|
100 # only such data is the locking directory; ${lockdir} is a
|
|
101 # subdirectory of this.
|
|
102 statedir=@statedir@
|
|
103
|
|
104 # Where to install and expect executable files to be run by XEmacs
|
|
105 # rather than directly by users, and other architecture-dependent
|
|
106 # data. ${archlibdir} is a subdirectory of this.
|
|
107 libdir=@libdir@
|
|
108
|
|
109 # Where to install XEmacs's man pages, and what extension they should have.
|
|
110 mandir=@mandir@
|
|
111 manext=.1
|
|
112
|
|
113 # Where to install and expect the info files describing XEmacs. In the
|
|
114 # past, this defaulted to a subdirectory of ${prefix}/lib/xemacs, but
|
|
115 # since there are now many packages documented with the texinfo
|
|
116 # system, it is inappropriate to imply that it is part of XEmacs.
|
|
117 infodir=@infodir@
|
|
118
|
|
119 # This is set to 'yes' if the user specified the --infodir flag at
|
|
120 # configuration time.
|
|
121 infodir_user_defined=@infodir_user_defined@
|
|
122
|
|
123 # Where to find the source code. The source code for XEmacs's C kernel is
|
|
124 # expected to be in ${srcdir}/src, and the source code for XEmacs's
|
|
125 # utility programs is expected to be in ${srcdir}/lib-src. This is
|
|
126 # set by the configure script's `--srcdir' option.
|
|
127 srcdir=@srcdir@
|
|
128
|
|
129 # Tell make where to find source files; this is needed for the makefiles.
|
|
130 VPATH=@srcdir@
|
|
131
|
|
132 # ==================== XEmacs-specific directories ====================
|
|
133
|
|
134 # These variables hold the values XEmacs will actually use. They are
|
|
135 # based on the values of the standard Make variables above.
|
|
136
|
|
137 # Where to install the lisp files distributed with
|
|
138 # XEmacs. This includes the XEmacs version, so that the
|
|
139 # lisp files for different versions of XEmacs will install
|
|
140 # themselves in separate directories.
|
|
141 lispdir=@lispdir@
|
|
142
|
|
143 # This is set to 'yes' if the user specified the --lispdir or
|
|
144 # --datadir flag at configuration time.
|
|
145 lispdir_user_defined=@lispdir_user_defined@
|
|
146
|
|
147 # Directories XEmacs should search for lisp files specific
|
|
148 # to this site (i.e. customizations), before consulting
|
|
149 # ${lispdir}. This should be a colon-separated list of
|
|
150 # directories.
|
|
151 sitelispdir=@sitelispdir@
|
|
152
|
|
153 # Where XEmacs will search for its lisp files while
|
|
154 # building. This is only used during the process of
|
|
155 # compiling XEmacs, to help XEmacs find its lisp files
|
|
156 # before they've been installed in their final location.
|
|
157 # It's usually identical to lispdir, except that the
|
|
158 # entry for the directory containing the installed lisp
|
|
159 # files has been replaced with ../lisp. This should be a
|
|
160 # colon-separated list of directories.
|
|
161 buildlispdir=${srcdir}/lisp
|
|
162
|
|
163 # Where to install the other architecture-independent
|
|
164 # data files distributed with XEmacs (like the tutorial,
|
|
165 # the cookie recipes and the Zippy database). This path
|
|
166 # usually contains the XEmacs version number, so the data
|
|
167 # files for multiple versions of XEmacs may be installed
|
|
168 # at once.
|
|
169 etcdir=@etcdir@
|
|
170
|
|
171 # This is set to 'yes' if the user specified the --etcdir or
|
|
172 # --datadir flag at configuration time.
|
|
173 etcdir_user_defined=@etcdir_user_defined@
|
|
174
|
|
175 # Where to create and expect the locking directory, where
|
|
176 # the XEmacs locking code keeps track of which files are
|
|
177 # currently being edited.
|
|
178 lockdir=@lockdir@
|
|
179
|
|
180 # This is set to 'yes' if the user specified the --lockdir or
|
|
181 # --statedir flag at configuration time.
|
|
182 lockdir_user_defined=@lockdir_user_defined@
|
|
183
|
|
184 # Where to put executables to be run by XEmacs rather than
|
|
185 # the user. This path usually includes the XEmacs version
|
|
186 # and configuration name, so that multiple configurations
|
|
187 # for multiple versions of XEmacs may be installed at
|
|
188 # once.
|
|
189 archlibdir=@archlibdir@
|
|
190
|
|
191 # This is set to 'yes' if the user specified any of --exec-prefix,
|
|
192 # --libdir or --archlibdir at configuration time.
|
|
193 archlibdir_user_defined=@archlibdir_user_defined@
|
|
194
|
|
195 # ==================== Utility Programs for the Build ====================
|
|
196
|
|
197 # Allow the user to specify the install program.
|
|
198 INSTALL = @INSTALL@
|
|
199 INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
200 INSTALL_DATA = @INSTALL_DATA@
|
|
201
|
|
202 # ============================= Targets ==============================
|
|
203
|
|
204 # Subdirectories to make recursively. `lisp' is not included
|
|
205 # because the compiled lisp files are part of the distribution
|
|
206 # and you cannot remake them without installing XEmacs first.
|
|
207 MAKE_SUBDIR = lib-src lwlib dynodump src
|
|
208
|
|
209 # Subdirectories that can be made recursively.
|
|
210 SUBDIR = ${MAKE_SUBDIR} man
|
|
211
|
|
212 # The makefiles of the directories in $SUBDIR.
|
10
|
213 SUBDIR_MAKEFILES = lib-src/Makefile lwlib/Makefile dynodump/Makefile src/Makefile
|
0
|
214
|
|
215 # Subdirectories to install, and where they'll go.
|
|
216 # lib-src's makefile knows how to install it, so we don't do that here.
|
|
217 # When installing the info files, we need to do special things to
|
|
218 # avoid nuking an existing dir file, so we don't do that here;
|
|
219 # instead, we have written out explicit code in the `install' targets.
|
|
220 COPYDIR = ${srcdir}/etc ${srcdir}/lisp
|
|
221 COPYDESTS = ${etcdir} ${lispdir}
|
|
222
|
|
223 .NO_PARALLEL: src/paths.h src/Emacs.ad.h ${MAKE_SUBDIR} dump-elcs
|
|
224
|
|
225 all: src/paths.h src/Emacs.ad.h ${MAKE_SUBDIR}
|
|
226
|
|
227 # Convenience target for XEmacs beta testers
|
70
|
228 beta: clean all-elc
|
0
|
229
|
|
230 # Build XEmacs and recompile out-of-date and missing .elc files along
|
|
231 # the way.
|
70
|
232 all-elc all-elcs: src/paths.h src/Emacs.ad.h lib-src lwlib dump-elcs src
|
|
233 sh ${srcdir}/lib-src/update-elc.sh
|
0
|
234
|
|
235 # Sub-target for all-elc.
|
70
|
236 dump-elc dump-elcs: FRC.dump-elcs
|
80
|
237 cd src && $(MAKE) dump-elcs $(MFLAGS) \
|
0
|
238 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}'
|
|
239
|
|
240 autoloads: src
|
70
|
241 sh ${srcdir}/lib-src/update-autoloads.sh
|
0
|
242
|
|
243 # We force the rebuilding of src/paths.h because the user might give
|
|
244 # different values for the various directories. Since we use
|
|
245 # move-if-change, src/paths.h only actually changes if the user did
|
|
246 # something notable, so the only unnecessary work we do is in building
|
|
247 # src/paths.h.tmp, which isn't much. Note that sed is not in /bin on
|
|
248 # 386bsd.
|
|
249 src/paths.h: Makefile ${srcdir}/src/paths.h.in FRC.src.paths.h
|
|
250 @echo "Producing \`src/paths.h' from \`src/paths.h.in'."
|
|
251 -rm -f src/paths.h.tmp
|
|
252 @cp ${srcdir}/src/paths.h.in src/paths.h.tmp
|
|
253 -chmod 0644 src/paths.h.tmp
|
|
254 @echo '#define PATH_PREFIX "${prefix}"' >> src/paths.h.tmp
|
|
255 @if [ x"${lispdir_user_defined}" = x"yes" ]; then \
|
|
256 echo '#define PATH_LOADSEARCH "${lispdir}"' >> src/paths.h.tmp;\
|
|
257 else \
|
|
258 echo '/* #define PATH_LOADSEARCH "${lispdir}" */' >>src/paths.h.tmp;\
|
|
259 fi
|
|
260 @if [ x"${archlibdir_user_defined}" = x"yes" ]; then \
|
|
261 echo '#define PATH_EXEC "${archlibdir}"' >> src/paths.h.tmp ;\
|
|
262 else \
|
|
263 echo '/* #define PATH_EXEC "${archlibdir}" */' >> src/paths.h.tmp ;\
|
|
264 fi
|
|
265 @if [ x"${etcdir_user_defined}" = x"yes" ]; then \
|
|
266 echo '#define PATH_DATA "${etcdir}"' >> src/paths.h.tmp ;\
|
|
267 else \
|
|
268 echo '/* #define PATH_DATA "${etcdir}" */' >> src/paths.h.tmp ;\
|
|
269 fi
|
|
270 @if [ x"${lockdir_user_defined}" = x"yes" ]; then \
|
|
271 echo '#define PATH_LOCK "${lockdir}"' >> src/paths.h.tmp ;\
|
|
272 else \
|
|
273 echo '/* #define PATH_LOCK "${lockdir}" */' >> src/paths.h.tmp ;\
|
|
274 fi
|
|
275 @if [ x"${infodir_user_defined}" = x"yes" ]; then \
|
|
276 echo '#define PATH_INFO "${infodir}"' >> src/paths.h.tmp ;\
|
|
277 else \
|
|
278 echo '/* #define PATH_INFO "${infodir}" */' >> src/paths.h.tmp ;\
|
|
279 fi
|
|
280 @sh ${srcdir}/move-if-change src/paths.h.tmp src/paths.h
|
|
281
|
|
282 # We have to force the building of Emacs.ad.h as well in order to get it
|
|
283 # updated correctly when VPATH is being used. Since we use move-if-change,
|
|
284 # it will only actually change if the user modified ${etcdir}/Emacs.ad.
|
|
285 src/Emacs.ad.h: ${srcdir}/etc/Emacs.ad
|
|
286 @echo "Producing \`src/Emacs.ad.h' from \`etc/Emacs.ad'."
|
|
287 -rm -f src/Emacs.ad.h
|
|
288 @(echo "/* Do not edit this file!" ; \
|
|
289 echo " Automatically generated from ${srcdir}/etc/Emacs.ad" ; \
|
|
290 echo " */" ; \
|
|
291 /bin/sh ${srcdir}/lib-src/ad2c ${srcdir}/etc/Emacs.ad ) > \
|
|
292 src/Emacs.ad.h
|
|
293
|
|
294 src: lib-src lwlib dynodump FRC.src
|
|
295 lib-src: FRC.lib-src
|
|
296 lwlib: FRC.lwlib
|
|
297 dynodump: FRC.dynodump
|
|
298
|
|
299 .RECURSIVE: ${SUBDIR}
|
|
300
|
70
|
301 ${SUBDIR}: ${SUBDIR_MAKEFILES} src/config.h FRC
|
80
|
302 cd $@ && $(MAKE) all $(MFLAGS) \
|
0
|
303 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}'
|
|
304
|
|
305 Makefile: ${srcdir}/Makefile.in config.status
|
|
306 ./config.status
|
|
307
|
|
308 src/Makefile: ${srcdir}/src/Makefile.in.in config.status
|
|
309 ./config.status
|
|
310
|
|
311 lib-src/Makefile: ${srcdir}/lib-src/Makefile.in.in config.status
|
|
312 ./config.status
|
|
313
|
|
314 lwlib/Makefile: ${srcdir}/lwlib/Makefile.in.in config.status
|
|
315 ./config.status
|
|
316
|
|
317 dynodump/Makefile: ${srcdir}/dynodump/Makefile.in.in config.status
|
|
318 ./config.status
|
|
319
|
|
320 src/config.h: ${srcdir}/src/config.h.in
|
|
321 ./config.status
|
|
322
|
|
323 # ==================== Installation ====================
|
|
324
|
|
325 ## If we let lib-src do its own installation, that means we
|
|
326 ## don't have to duplicate the list of utilities to install in
|
|
327 ## this Makefile as well.
|
|
328
|
|
329 ## On AIX, use tar xBf.
|
|
330 ## On Xenix, use tar xpf.
|
|
331
|
|
332 .PHONY: install install-arch-dep install-arch-indep mkdir
|
|
333
|
|
334 ## We delete each directory in ${COPYDESTS} before we copy into it;
|
|
335 ## that way, we can reinstall over directories that have been put in
|
|
336 ## place with their files read-only (perhaps because they are checked
|
|
337 ## into RCS). In order to make this safe, we make sure that the
|
|
338 ## source exists and is distinct from the destination.
|
|
339
|
|
340 ## FSF doesn't depend on `all', but rather on ${MAKE_SUBDIR}, so that
|
|
341 ## they "won't ever modify src/paths.h". But that means you can't do
|
|
342 ## 'make install' right off the bat because src/paths.h won't exist.
|
|
343 ## And, in XEmacs case, src/Emacs.ad.h won't exist either. I also
|
|
344 ## don't see the point in avoiding modifying paths.h. It creates an
|
|
345 ## inconsistency in the build process. So we go ahead and depend on
|
|
346 ## all. --cet
|
|
347
|
|
348 install: all install-arch-dep install-arch-indep;
|
|
349
|
|
350 install-arch-dep: mkdir
|
70
|
351 (cd lib-src && \
|
0
|
352 $(MAKE) install $(MFLAGS) prefix=${prefix} \
|
|
353 exec_prefix=${exec_prefix} bindir=${bindir} libdir=${libdir} \
|
|
354 archlibdir=${archlibdir})
|
80
|
355 if [ `(cd ${archlibdir} && /bin/pwd)` != `(cd ./lib-src && /bin/pwd)` ]; \
|
0
|
356 then \
|
70
|
357 ${INSTALL_DATA} lib-src/DOC ${archlibdir}/DOC ; \
|
0
|
358 for subdir in `find ${archlibdir} -type d ! -name RCS ! -name SCCS ! -name CVS -print` ; do \
|
70
|
359 rm -rf $${subdir}/RCS $${subdir}/CVS $${subdir}/SCCS ; \
|
|
360 rm -f $${subdir}/\#* $${subdir}/*~ ; \
|
0
|
361 done ; \
|
|
362 else true; fi
|
|
363 ${INSTALL_PROGRAM} src/xemacs ${bindir}/xemacs-${version}
|
|
364 -chmod 0755 ${bindir}/xemacs-${version}
|
|
365 rm -f ${bindir}/xemacs
|
80
|
366 (cd ${bindir} && ${LN_S} xemacs-${version} ./xemacs)
|
0
|
367
|
|
368 install-arch-indep: mkdir
|
|
369 -set ${COPYDESTS} ; \
|
|
370 for dir in ${COPYDIR} ; do \
|
|
371 if [ `(cd $$1 && pwd)` != `(cd $${dir} && pwd)` ] ; then \
|
|
372 echo "rm -rf $$1" ; \
|
|
373 fi ; \
|
|
374 shift ; \
|
|
375 done
|
|
376 -set ${COPYDESTS} ; \
|
|
377 mkdir ${COPYDESTS} ; \
|
|
378 for dir in ${COPYDIR} ; do \
|
|
379 dest=$$1 ; shift ; \
|
|
380 [ -d $${dir} ] \
|
|
381 && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \
|
|
382 && (echo "Copying $${dir}..." ; \
|
80
|
383 (cd $${dir} && tar -cf - . ) | \
|
|
384 (cd $${dest} && umask 022 && tar -xf - );\
|
0
|
385 chmod 0755 $${dest}; \
|
|
386 for subdir in `find $${dest} -type d ! -name RCS ! -name SCCS ! -name CVS -print` ; do \
|
70
|
387 rm -rf $${subdir}/RCS $${subdir}/CVS $${subdir}/SCCS ; \
|
|
388 rm -f $${subdir}/\#* $${subdir}/*~ ; \
|
0
|
389 done) ; \
|
|
390 done
|
|
391 if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \
|
|
392 then \
|
80
|
393 (cd ${srcdir}/info && \
|
0
|
394 if [ ! -f ${infodir}/dir ] && [ -f dir ]; then \
|
|
395 ${INSTALL_DATA} ${srcdir}/info/dir ${infodir}/dir ; \
|
|
396 fi ; \
|
78
|
397 for f in *.info* ; do \
|
0
|
398 ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f ; \
|
|
399 chmod 0644 ${infodir}/$$f; \
|
80
|
400 gzip -9 -f ${infodir}/$$f; \
|
0
|
401 done); \
|
|
402 else true; fi
|
80
|
403 cd ${srcdir}/etc && for page in xemacs etags ctags gnuserv \
|
0
|
404 gnuclient gnuattach gnudoit ; do \
|
|
405 ${INSTALL_DATA} ${srcdir}/etc/$${page}.1 ${mandir}/$${page}${manext} ; \
|
|
406 chmod 0644 ${mandir}/$${page}${manext} ; \
|
|
407 done
|
|
408
|
|
409 MAKEPATH=./lib-src/make-path
|
|
410 ### Build all the directories we're going to install XEmacs in. Since
|
|
411 ### we may be creating several layers of directories (for example,
|
70
|
412 ### /usr/local/lib/xemacs-19.13/mips-dec-ultrix4.2), we use make-path
|
0
|
413 ### instead of mkdir. Not all systems' mkdirs have the `-p' flag.
|
|
414 mkdir: FRC.mkdir
|
|
415 ${MAKEPATH} ${COPYDESTS} ${lockdir} ${infodir} ${mandir} \
|
|
416 ${bindir} ${datadir} ${libdir} ${sitelispdir}
|
|
417 -chmod 0777 ${lockdir}
|
|
418
|
|
419 ### Delete all the installed files that the `install' target would
|
|
420 ### create (but not the noninstalled files such as `make all' would
|
|
421 ### create).
|
|
422 ###
|
|
423 ### Don't delete the lisp and etc directories if they're in the source tree.
|
|
424 #### This target has not been updated in sometime and until it is it
|
|
425 #### would be extremely dangerous for anyone to use it.
|
|
426 #uninstall:
|
|
427 # (cd lib-src; \
|
|
428 # $(MAKE) $(MFLAGS) uninstall \
|
|
429 # prefix=${prefix} exec_prefix=${exec_prefix} \
|
|
430 # bindir=${bindir} libdir=${libdir} archlibdir=${archlibdir})
|
|
431 # for dir in ${lispdir} ${etcdir} ; do \
|
|
432 # case `(cd $${dir} ; pwd)` in \
|
|
433 # `(cd ${srcdir} ; pwd)`* ) ;; \
|
|
434 # * ) rm -rf $${dir} ;; \
|
|
435 # esac ; \
|
|
436 # case $${dir} in \
|
|
437 # ${datadir}/xemacs/${version}/* ) \
|
|
438 # rm -rf ${datadir}/xemacs/${version} \
|
|
439 # ;; \
|
|
440 # esac ; \
|
|
441 # done
|
|
442 # (cd ${infodir} && rm -f cl* xemacs* forms* info* vip*)
|
|
443 # (cd ${mandir} && rm -f xemacs.1 etags.1 ctags.1 gnuserv.1)
|
|
444 # (cd ${bindir} && rm -f xemacs-${version} xemacs)
|
|
445
|
|
446
|
|
447 ### Some makes seem to remember that they've built something called FRC,
|
|
448 ### so you can only use a given FRC once per makefile.
|
|
449 FRC FRC.src.paths.h FRC.src FRC.lib-src FRC.lwlib FRC.mkdir FRC.dump-elcs:
|
|
450 FRC.dynodump:
|
|
451 FRC.mostlyclean FRC.clean FRC.distclean FRC.realclean:
|
|
452
|
|
453 # ==================== Cleaning up and miscellanea ====================
|
|
454
|
|
455 .PHONY: mostlyclean clean distclean realclean extraclean
|
|
456
|
|
457 ### `mostlyclean'
|
|
458 ### Like `clean', but may refrain from deleting a few files that people
|
|
459 ### normally don't want to recompile. For example, the `mostlyclean'
|
|
460 ### target for GCC does not delete `libgcc.a', because recompiling it
|
|
461 ### is rarely necessary and takes a lot of time.
|
|
462 mostlyclean: FRC.mostlyclean
|
|
463 (cd src && $(MAKE) $(MFLAGS) mostlyclean)
|
|
464 (cd lib-src && $(MAKE) $(MFLAGS) mostlyclean)
|
|
465 (cd lwlib && $(MAKE) $(MFLAGS) mostlyclean)
|
|
466 (cd dynodump && $(MAKE) $(MFLAGS) mostlyclean)
|
|
467 -(cd man && $(MAKE) $(MFLAGS) mostlyclean)
|
|
468
|
|
469 ### `clean'
|
|
470 ### Delete all files from the current directory that are normally
|
|
471 ### created by building the program. Don't delete the files that
|
|
472 ### record the configuration. Also preserve files that could be made
|
|
473 ### by building, but normally aren't because the distribution comes
|
|
474 ### with them.
|
|
475 ###
|
|
476 ### Delete `.dvi' files here if they are not part of the distribution.
|
|
477 clean: FRC.clean
|
|
478 (cd src && $(MAKE) $(MFLAGS) clean)
|
|
479 (cd lib-src && $(MAKE) $(MFLAGS) clean)
|
|
480 (cd lwlib && $(MAKE) $(MFLAGS) clean)
|
|
481 (cd dynodump && $(MAKE) $(MFLAGS) clean)
|
|
482 -(cd man && $(MAKE) $(MFLAGS) clean)
|
|
483
|
|
484 ### `distclean'
|
|
485 ### Delete all files from the current directory that are created by
|
|
486 ### configuring or building the program. If you have unpacked the
|
|
487 ### source and built the program without creating any other files,
|
|
488 ### `make distclean' should leave only the files that were in the
|
|
489 ### distribution.
|
|
490 top_distclean=\
|
|
491 rm -f config.status config-tmp-* build-install ; \
|
|
492 rm -f Makefile ${SUBDIR_MAKEFILES}; \
|
|
493 (cd lock && rm -f *)
|
|
494
|
|
495 distclean: FRC.distclean
|
|
496 (cd src && $(MAKE) $(MFLAGS) distclean)
|
|
497 (cd lib-src && $(MAKE) $(MFLAGS) distclean)
|
|
498 (cd lwlib && $(MAKE) $(MFLAGS) distclean)
|
|
499 (cd dynodump && $(MAKE) $(MFLAGS) distclean)
|
|
500 -(cd man && $(MAKE) $(MFLAGS) distclean)
|
|
501 -${top_distclean}
|
|
502
|
|
503 ### `realclean'
|
|
504 ### Delete everything from the current directory that can be
|
|
505 ### reconstructed with this Makefile. This typically includes
|
|
506 ### everything deleted by distclean, plus more: C source files
|
|
507 ### produced by Bison, tags tables, info files, and so on.
|
|
508 ###
|
|
509 ### One exception, however: `make realclean' should not delete
|
|
510 ### `configure' even if `configure' can be remade using a rule in the
|
|
511 ### Makefile. More generally, `make realclean' should not delete
|
|
512 ### anything that needs to exist in order to run `configure' and then
|
|
513 ### begin to build the program.
|
|
514 realclean: FRC.realclean
|
|
515 (cd src && $(MAKE) $(MFLAGS) realclean)
|
|
516 (cd lib-src && $(MAKE) $(MFLAGS) realclean)
|
|
517 (cd lwlib && $(MAKE) $(MFLAGS) realclean)
|
|
518 (cd dynodump && $(MAKE) $(MFLAGS) realclean)
|
|
519 -(cd man && $(MAKE) $(MFLAGS) realclean)
|
|
520 -${top_distclean}
|
|
521
|
|
522 ### This doesn't actually appear in the coding standards, but Karl
|
|
523 ### says GCC supports it, and that's where the configuration part of
|
|
524 ### the coding standards seem to come from. It's like distclean, but
|
|
525 ### it deletes backup and autosave files too.
|
|
526 extraclean:
|
|
527 (cd src && $(MAKE) $(MFLAGS) extraclean)
|
|
528 (cd lib-src && $(MAKE) $(MFLAGS) extraclean)
|
|
529 (cd lwlib && $(MAKE) $(MFLAGS) extraclean)
|
|
530 (cd dynodump && $(MAKE) $(MFLAGS) extraclean)
|
|
531 -(cd man && $(MAKE) $(MFLAGS) extraclean)
|
|
532 -rm -f *~ \#*
|
|
533 -${top_distclean}
|
|
534
|
|
535 ### Unlocking and relocking. The idea of these productions is to reduce
|
|
536 ### hassles when installing an incremental tar of XEmacs. Do `make unlock'
|
|
537 ### before unlocking the file to take the write locks off all sources so
|
|
538 ### that tar xvof will overwrite them without fuss. Then do `make relock'
|
|
539 ### afterward so that VC mode will know which files should be checked in
|
|
540 ### if you want to mung them.
|
|
541 ###
|
|
542 ### Note: it's no disaster if these productions miss a file or two; tar
|
|
543 ### and VC will swiftly let you know if this happens, and it is easily
|
|
544 ### corrected.
|
|
545 SOURCES = ChangeLog GETTING.GNU.SOFTWARE INSTALL Makefile.in PROBLEMS \
|
|
546 README build-install.in configure make-dist move-if-change
|
|
547
|
|
548 .PHONY: unlock relock
|
|
549
|
|
550 unlock:
|
|
551 chmod u+w $(SOURCES) cpp/*
|
|
552 -(cd elisp && chmod u+w Makefile README *.texi)
|
|
553 (cd etc && $(MAKE) $(MFLAGS) unlock)
|
|
554 (cd lib-src && $(MAKE) $(MFLAGS) unlock)
|
|
555 (cd lisp && $(MAKE) $(MFLAGS) unlock)
|
|
556 (cd lisp/term && chmod u+w README *.el)
|
|
557 (cd man && chmod u+w *texi* ChangeLog split-man)
|
|
558 (cd lwlib && chmod u+w *.[ch] Makefile.in.in)
|
|
559 (cd src && $(MAKE) $(MFLAGS) unlock)
|
|
560
|
|
561 relock:
|
|
562 chmod u-w $(SOURCES) cpp/*
|
|
563 -(cd elisp && chmod u-w Makefile README *.texi)
|
|
564 (cd etc && $(MAKE) $(MFLAGS) relock)
|
|
565 (cd lib-src && $(MAKE) $(MFLAGS) relock)
|
|
566 (cd lisp && $(MAKE) $(MFLAGS) relock)
|
|
567 (cd lisp/term && chmod u+w README *.el)
|
|
568 (cd man && chmod u+w *texi* ChangeLog split-man)
|
|
569 (cd lwlib && chmod u+w *.[ch] Makefile.in.in)
|
|
570 (cd src && $(MAKE) $(MFLAGS) relock)
|
|
571
|
|
572 .PHONY: TAGS tags check dist
|
|
573
|
|
574 TAGS tags:
|
|
575 @echo "If you don't have a copy of etags around, then do 'make lib-src' first."
|
70
|
576 @PATH=`pwd`/lib-src:$$PATH HOME=/-=-; export PATH HOME; \
|
|
577 echo "Using etags from `which etags`."
|
80
|
578 PATH=`pwd`/lib-src:$$PATH ; export PATH; cd ${srcdir} && \
|
70
|
579 etags --regex='/[ ]*DEF\(VAR\|INE\)_[A-Z_]+[ ]*([ ]*"\([^"]+\)"/\2/' src/*.[ch] ; \
|
|
580 for d in `find lisp -name SCCS -prune -o -name RCS -prune -o -type d -print` ; do \
|
80
|
581 (cd $$d && if [ "`echo *.el`" != "*.el" ] ; then etags -a -o ${srcdir}/TAGS *.el ; fi ) ; \
|
70
|
582 done ; \
|
0
|
583 etags -a lwlib/*.[ch]
|
|
584
|
|
585 check:
|
70
|
586 @echo "We don't have any automated tests for XEmacs yet."
|
0
|
587
|
|
588 dist:
|
|
589 cd ${srcdir} && make-dist
|
|
590
|
|
591 .PHONY: info dvi
|
|
592 force-info:
|
|
593 info: force-info
|
70
|
594 cd ${srcdir}/man && $(MAKE) $(MFLAGS) $@
|
|
595 dvi:
|
|
596 cd ${srcdir}/man && $(MAKE) $(MFLAGS) $@
|
0
|
597
|
70
|
598 # Fix up version information in executables (Solaris-only)
|
|
599 mcs:
|
|
600 date=`LANG=C LC_ALL=C date -u '+%e %b %Y'`; \
|
|
601 ident="@(#)RELEASE VERSION XEmacs ${version} $${date}"; \
|
|
602 for f in `file lib-src/* src/xemacs | grep ELF | sed -e 's/:.*//'`; do \
|
|
603 mcs -da "$${ident} `echo $${f} | sed 's/.*\///'`" $${f}; \
|
|
604 done
|