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