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