]> code.delx.au - gnu-emacs/blob - Makefile.in
*** empty log message ***
[gnu-emacs] / Makefile.in
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.
4
5 # make all to compile and build Emacs.
6 # make install to install it.
7 # make install.sysv to install on system V. Note that on system V you
8 # must change mandir to /usr/local/man/man1.
9 # make install.xenix to install on Xenix.
10 # make install.aix to install on AIX.
11 # make tags to update tags tables.
12 #
13 # make distclean to delete everything that wasn't in the distribution.
14 # This is a very dangerous thing to do!
15 # make clean
16 # This is a little less dangerous.
17 # make dist
18 # This produces a tar file from the current source tree suitable
19 # for redistribution.
20
21 SHELL = /bin/sh
22
23 # ==================== Where To Install Things ====================
24
25 # The default location for installation. Everything is placed in
26 # subdirectories of this directory. This directory must exist when
27 # you start installation. The default values for many of the
28 # variables below are expressed in terms of this one, so you may not
29 # need to change them.
30 prefix=/usr/local
31
32 # Where to install Emacs and other binaries that people will want to
33 # run directly (like etags).
34 bindir=${prefix}/bin
35
36 # A directory under which we will install many of Emacs's files. The
37 # default values for many of the variables below are expressed in
38 # terms of this one, so you may not need to change them.
39 emacsdir=${prefix}/emacs-19.0
40
41 # Where to install and expect the architecture-independent data files
42 # (like the tutorial and the Zippy database).
43 datadir=${emacsdir}/etc
44
45 # Where to install the elisp files distributed with Emacs. Strictly
46 # speaking, all the elisp files should go under datadir (above), since
47 # both elisp source and compiled elisp are completely portable, but
48 # it's traditional to give the lisp files their own subdirectory.
49 lispdir=${emacsdir}/lisp
50
51 # Directories Emacs should search for elisp files specific to this
52 # site (i.e. customizations), before consulting ${lispdir}. This
53 # should be a colon-separated list of directories.
54 locallisppath=${emacsdir}/local-lisp
55
56 # Where Emacs will search to find its elisp files. Before changing
57 # this, check to see if your purpose wouldn't better be served by
58 # changing locallisppath. This should be a colon-separated list of
59 # directories.
60 lisppath=${locallisppath}:${lispdir}
61
62 # Where Emacs will search for its elisp files while building. This is
63 # only used during the process of compiling Emacs, to help Emacs find
64 # its lisp files before they've been installed in their final
65 # location. It's usually identical to lisppath, except that the entry
66 # for the directory containing the installed lisp files has been
67 # replaced with ../lisp. This should be a colon-separated list of
68 # directories.
69 buildlisppath=../lisp
70
71 # Where to install and expect the files that Emacs modifies as it
72 # runs. These files are all architecture-independent. Right now,
73 # the only such data is the locking directory.
74 statedir=${emacsdir}
75
76 # Where to create and expect the locking directory, where the Emacs
77 # locking code keeps track of which files are currently being edited.
78 lockdir=${statedir}/lock
79
80 # Where to install and expect executable files to be run by Emacs
81 # rather than directly by users, and other architecture-dependent
82 # data.
83 libdir=${emacsdir}/arch-lib
84
85 # Where to install Emacs's man pages.
86 mandir=/usr/man/man1
87
88 # Where to install and expect the info files describing Emacs. In the
89 # past, this defaulted to a subdirectory of ${prefix}/lib/emacs, but
90 # since there are now many packages documented with the texinfo
91 # system, it is inappropriate to imply that it is part of Emacs.
92 infodir=${prefix}/info
93
94
95 # ==================== Utility Programs for the Build ====================
96
97 # Allow the user to specify the install program.
98 INSTALL = install
99 INSTALLFLAGS = -c
100 INSTALL_PROGRAM = ${INSTALL}
101 INSTALL_DATA = ${INSTALL}
102
103
104 # ============================= Targets ==============================
105
106 # Flags passed down to subdirectory makefiles.
107 MFLAGS =
108
109 # Subdirectories to make recursively. `lisp' is not included
110 # because the compiled lisp files are part of the distribution
111 # and you cannot remake them without installing Emacs first.
112 SUBDIR = lib-src src
113
114 # Subdirectories to install, and where they'll go.
115 COPYDIR = arch-lib etc info lisp
116 COPYDESTS = ${libdir} ${datadir} ${infodir} ${lispdir}
117
118 all: src/paths.h ${SUBDIR}
119
120 removenullpaths=sed -e 's/^://' -e 's/:$$//' -e 's/::/:/'
121
122 src/paths.h: Makefile src/paths.h.in
123 lisppath=`echo ${lisppath} | ${removenullpaths}` ; \
124 buildlisppath=`echo ${buildlisppath} | ${removenullpaths}` ; \
125 /bin/sed < src/paths.h.in > src/paths.h \
126 -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'$${lisppath}'";' \
127 -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${buildlisppath}'";' \
128 -e 's;\(#.*PATH_EXEC\).*$$;\1 "${libdir}";' \
129 -e 's;\(#.*PATH_DATA\).*$$;\1 "${datadir}";' \
130 -e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";'
131
132 src: lib-src
133
134 .RECURSIVE: ${SUBDIR}
135
136 ${SUBDIR}: FRC
137 cd $@; make ${MFLAGS} all
138
139 install: all mkdir lockdir
140 -set ${COPYDESTS} ; \
141 for dir in ${COPYDIR} ; do \
142 dest=$$1 ; shift ; \
143 if [ `/bin/pwd`/$${dir} != `(cd $${dest}; /bin/pwd)` ] ; then \
144 (cd $${dir}; tar cf - . ) | (cd $${dest}; umask 0; tar xf - ) ; \
145 for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
146 rm -rf $${subdir}/RCS ; \
147 rm -f $${subdir}/\#* ; \
148 rm -f $${subdir}/*~ ; \
149 done ; \
150 fi ; \
151 done
152 ${INSTALL_PROGRAM} ${INSTALLFLAGS} -c arch-lib/emacsclient ${bindir}/emacsclient
153 ${INSTALL_PROGRAM} ${INSTALLFLAGS} -c arch-lib/etags ${bindir}/etags
154 ${INSTALL_PROGRAM} ${INSTALLFLAGS} -c arch-lib/ctags ${bindir}/ctags
155 ${INSTALL_PROGRAM} ${INSTALLFLAGS} -c -m 1755 src/xemacs ${bindir}/xemacs
156 ${INSTALL_DATA} ${INSTALLFLAGS} -c -m 444 etc/emacs.1 ${mandir}/emacs.1
157 -rm -f ${bindir}/emacs
158 mv ${bindir}/xemacs ${bindir}/emacs
159
160 install.sysv: all mkdir lockdir
161 -set ${COPYDESTS} ; \
162 for dir in ${COPYDIR} ; do \
163 dest=$$1 ; shift ; \
164 if [ `/bin/pwd`/$${dir} != `(cd $${dest}; /bin/pwd)` ] ; then \
165 (cd $${dir}; find . -print | cpio -pdum ${dest} ) ; \
166 for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
167 rm -rf $${subdir}/RCS ; \
168 rm -f $${subdir}/\#* ; \
169 rm -f $${subdir}/*~ ; \
170 done ; \
171 fi ; \
172 done
173 -cpset arch-lib/emacsclient ${bindir}/emacsclient 755 bin bin
174 -cpset arch-lib/etags ${bindir}/etags 755 bin bin
175 -cpset arch-lib/ctags ${bindir}/ctags 755 bin bin
176 -cpset etc/emacs.1 ${mandir}/emacs.1 444 bin bin
177 -/bin/rm -f ${bindir}/emacs
178 -cpset src/xemacs ${bindir}/emacs 1755 bin bin
179
180 install.xenix: all mkdir lockdir
181 -set ${COPYDESTS} ; \
182 for dir in ${COPYDIR} ; do \
183 dest=$$1 ; shift ; \
184 if [ `/bin/pwd`/$${dir} != `(cd $${dest}; /bin/pwd)` ] ; then \
185 (cd $${dir}; tar cf - . ) | (cd $${dest}; umask 0; tar xpf - ) ; \
186 for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
187 rm -rf $${subdir}/RCS ; \
188 rm -f $${subdir}/\#* ; \
189 rm -f $${subdir}/*~ ; \
190 done ; \
191 fi ; \
192 done
193 cp arch-lib/etags arch-lib/ctags arch-lib/emacsclient ${bindir}
194 chmod 755 ${bindir}/etags ${bindir}/ctags ${bindir}/emacsclient
195 cp etc/emacs.1 ${mandir}/emacs.1
196 chmod 444 ${mandir}/emacs.1
197 -mv -f ${bindir}/emacs ${bindir}/emacs.old
198 cp src/xemacs ${bindir}/emacs
199 chmod 1755 ${bindir}/emacs
200 -rm -f ${bindir}/emacs.old
201
202 install.aix: all mkdir lockdir
203 -set ${COPYDESTS} ; \
204 for dir in ${COPYDIR} ; do \
205 dest=$$1 ; shift ; \
206 if [ `/bin/pwd`/$${dir} != `(cd $${dest}; /bin/pwd)` ] ; then \
207 (cd $${dir}; tar cf - . ) | (cd $${dest}; umask 0; tar xBf - ) ; \
208 for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
209 rm -rf $${subdir}/RCS ; \
210 rm -f $${subdir}/\#* ; \
211 rm -f $${subdir}/*~ ; \
212 done ; \
213 fi ; \
214 done
215 ${INSTALL_PROGRAM} ${INSTALLFLAGS} -f ${bindir} etc/emacsclient
216 ${INSTALL_PROGRAM} ${INSTALLFLAGS} -f ${bindir} etc/etags
217 ${INSTALL_PROGRAM} ${INSTALLFLAGS} -f ${bindir} etc/ctags
218 ${INSTALL_PROGRAM} ${INSTALLFLAGS} -M 1755 -f ${bindir} src/xemacs
219 ${INSTALL_DATA} ${INSTALLFLAGS} -M 444 -f ${mandir} etc/emacs.1
220 -rm -f ${bindir}/emacs
221 mv ${bindir}/xemacs ${bindir}/emacs
222
223 # Build all the directories
224 mkdir: FRC
225 # If any of the directories are below ${emacsdir}, create it.
226 -for dir in ${COPYDESTS}; do \
227 case "$${dir}" in \
228 ${emacsdir}/* ) \
229 if [ ! -d ${emacsdir} ]; then \
230 -mkdir ${emacsdir} ; \
231 -chmod 777 ${emacsdir} ; \
232 fi ; \
233 break\
234 ;; \
235 esac ; \
236 done
237 -mkdir ${COPYDESTS}
238 -chmod 777 ${COPYDESTS}
239
240 lockdir:
241 # If the lockdir needs ${emacsdir}, create it.
242 -case "${lockdir}" in \
243 ${statedir}/* ) \
244 if [ ! -d ${emacsdir} ]; then \
245 -mkdir ${emacsdir} ; \
246 -chmod 777 ${emacsdir} ; \
247 fi \
248 ;; \
249 esac
250 -mkdir ${LOCKDIR}
251 -chmod 777 ${LOCKDIR}
252
253 FRC:
254
255 clean mostlyclean:
256 cd src; make clean
257 if [ `/bin/pwd` != `(cd ${DESTDIR}${LIBDIR}; /bin/pwd)` ] ; then \
258 cd etc; make clean; \
259 else true; \
260 fi
261 cd oldXMenu; make clean
262
263 distclean:
264 for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} distclean); done
265 -(cd lock; rm *)
266 -rm config.status config-tmp-*
267 -rm #*# *~
268
269 realclean:
270 for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} realclean); done
271 (cd lock; rm *)
272 rm config.status
273
274 TAGS tags: lib-src
275 cd src; ../arch-lib/etags *.[ch] ../lisp/*.el ../lisp/term/*.el
276
277 check:
278 @echo "We don't have any tests for GNU Emacs yet."
279
280 dist:
281 make-dist