]> code.delx.au - gnu-emacs/blob - lib-src/Makefile.in
(find-compressed-version): Don't set `error' here.
[gnu-emacs] / lib-src / Makefile.in
1 # Makefile for lib-src subdirectory in GNU Emacs.
2 # Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
3
4 # This file is part of GNU Emacs.
5
6 # GNU Emacs is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
20
21 # Avoid trouble on systems where the `SHELL' variable might be
22 # inherited from the environment.
23 SHELL = /bin/sh
24
25 # ==================== Things `configure' will edit ====================
26
27 CC=@CC@
28 CFLAGS=@CFLAGS@
29 ALLOCA=@ALLOCA@
30 YACC=@YACC@
31 version=@version@
32 configuration=@configuration@
33
34 # ==================== Where To Install Things ====================
35
36 # The default location for installation. Everything is placed in
37 # subdirectories of this directory. The default values for many of
38 # the variables below are expressed in terms of this one, so you may
39 # not need to change them. This is set with the --prefix option to
40 # `../configure'.
41 prefix=@prefix@
42
43 # Like `prefix', but used for architecture-specific files. This is
44 # set with the --exec-prefix option to `../configure'.
45 exec_prefix=@exec_prefix@
46
47 # Where to install Emacs and other binaries that people will want to
48 # run directly (like etags). This is set with the --bindir option
49 # to `../configure'.
50 bindir=@bindir@
51
52 # Where to install and expect executable files to be run by Emacs
53 # rather than directly by users, and other architecture-dependent
54 # data. ${archlibdir} is usually below this. This is set with the
55 # --libexecdir option to `../configure'.
56 libexecdir=@libexecdir@
57
58 # Where to find the source code. This is set by the configure
59 # script's `--srcdir' option. However, the value of ${srcdir} in
60 # this makefile is not identical to what was specified with --srcdir,
61 # since the variable here has `/lib-src' added at the end.
62 srcdir=@srcdir@
63 VPATH=@srcdir@
64
65 # The top-level source directory, also set by configure.
66 top_srcdir=@top_srcdir@
67
68 # ==================== Emacs-specific directories ====================
69
70 # These variables hold the values Emacs will actually use. They are
71 # based on the values of the standard Make variables above.
72
73 # Where to put executables to be run by Emacs rather than the user.
74 # This path usually includes the Emacs version and configuration name,
75 # so that multiple configurations for multiple versions of Emacs may
76 # be installed at once. This can be set with the --archlibdir option
77 # to `../configure'.
78 archlibdir=@archlibdir@
79
80 # ==================== Utility Programs for the Build =================
81
82 # ../configure figures out the correct values for these.
83 INSTALL = @INSTALL@
84 INSTALL_PROGRAM = @INSTALL_PROGRAM@
85 INSTALL_DATA = @INSTALL_DATA@
86 # By default, we uphold the dignity of our programs.
87 INSTALL_STRIP =
88
89 # ========================== Lists of Files ===========================
90
91 # Things that a user might actually run,
92 # which should be installed in bindir.
93 INSTALLABLES = etags ctags emacsclient b2m
94 INSTALLABLE_SCRIPTS = rcs-checkin
95
96 # Things that Emacs runs internally, or during the build process,
97 # which should not be installed in bindir.
98 UTILITIES= profile digest-doc \
99 sorted-doc movemail cvtmail fakemail yow emacsserver hexl
100
101 DONT_INSTALL= test-distrib make-docfile
102
103 # Like UTILITIES, but they're not system-dependent, and should not be
104 # deleted by the distclean target.
105 SCRIPTS= rcs2log vcdiff
106
107 EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}
108
109 SOURCES = COPYING ChangeLog Makefile.in README emacs.csh \
110 makedoc.com *.[chy] rcs2log vcdiff
111
112 # Additional -D flags for movemail (add to MOVE_FLAGS if desired):
113 # MAIL_USE_POP Support mail retrieval from a POP mailbox.
114 # MAIL_USE_MMDF Support MMDF mailboxes.
115 # MAIL_USE_FLOCK Use flock for file locking (see the comments
116 # about locking in movemail.c)
117 # MAIL_UNLINK_SPOOL Unlink the user's spool mailbox after reading
118 # it (instead of just emptying it).
119 # KERBEROS Support Kerberized POP.
120 # KRB5 Support Kerberos Version 5 pop instead of
121 # Version 4 (define this in addition to
122 # KERBEROS).
123 # HESIOD Support Hesiod lookups of user mailboxes.
124 # MAILHOST A string, the host name of the default POP
125 # mail host for the site.
126 MOVE_FLAGS=
127
128 # ========================== start of cpp stuff =======================
129 /* From here on, comments must be done in C syntax. */
130
131 #define NO_SHORTNAMES
132 #define THIS_IS_MAKEFILE
133 #define NOT_C_CODE
134 #include "../src/config.h"
135
136 /* We won't really call alloca;
137 don't let the file name alloca.c get messed up. */
138 #ifdef alloca
139 #undef alloca
140 #endif
141
142 /* Some machines don't find the standard C libraries in the usual place. */
143 #ifndef ORDINARY_LINK
144 #ifndef LIB_STANDARD_LIBSRC
145 #define LIB_STANDARD_LIBSRC -lc
146 #endif
147 #else
148 #ifndef LIB_STANDARD_LIBSRC
149 #define LIB_STANDARD_LIBSRC
150 #endif
151 #endif
152
153 /* Some s/SYSTEM.h files define this to request special libraries. */
154 #ifndef LIBS_SYSTEM
155 #define LIBS_SYSTEM
156 #endif
157
158 /* Some m/MACHINE.h files define this to request special libraries. */
159 #ifndef LIBS_MACHINE
160 #define LIBS_MACHINE
161 #endif
162
163 #ifndef C_SWITCH_SYSTEM
164 #define C_SWITCH_SYSTEM
165 #endif
166
167 #ifndef C_SWITCH_MACHINE
168 #define C_SWITCH_MACHINE
169 #endif
170
171 #undef MOVEMAIL_NEEDS_BLESSING
172 #ifndef MAIL_USE_FLOCK
173 #ifndef MAIL_USE_LOCKF
174 #define MOVEMAIL_NEEDS_BLESSING
175 #endif
176 #endif
177
178 #ifdef MOVEMAIL_NEEDS_BLESSING
179 #define BLESSMAIL blessmail
180 #else
181 #define BLESSMAIL
182 #endif
183
184 #ifdef KERBEROS
185 # ifdef HAVE_LIBKRB
186 KRB4LIB = -lkrb
187 # else
188 # ifdef HAVE_LIBKRB4
189 KRB4LIB = -lkrb4
190 # endif
191 # endif
192 # ifdef HAVE_LIBDES
193 DESLIB = -ldes
194 # else
195 # ifdef HAVE_LIBDES425
196 DESLIB = -ldes425
197 # endif
198 # endif
199 # ifdef HAVE_LIBKRB5
200 KRB5LIB = -lkrb5
201 # endif
202 # ifdef HAVE_LIBCRYPTO
203 CRYPTOLIB = -lcrypto
204 # endif
205 # ifdef HAVE_LIBCOM_ERR
206 COM_ERRLIB = -lcom_err
207 # endif
208 # ifdef HAVE_LIBGSSAPI_KRB5
209 GSSAPI_KRB5LIB = -lgssapi_krb5
210 # endif
211 #endif /* KERBEROS */
212
213 #ifdef HAVE_LIBGSSAPI
214 GSSAPILIB = -lgssapi
215 #endif
216
217 #ifdef HESIOD
218 HESIODLIB= -lhesiod
219 #endif
220
221 MOVE_LIBS=$(GSSAPI_KRB5LIB) $(GSSAPILIB) $(KRB4LIB) $(DESLIB) $(KRB5LIB) \
222 $(CRYPTOLIB) $(COM_ERRLIB) $(HESIODLIB)
223
224 #ifdef HAVE_LIBMAIL
225 LIBMAIL=-lmail
226 #endif
227
228 LOADLIBES=LIBS_SYSTEM LIBS_MACHINE LIB_STANDARD_LIBSRC
229
230 /* We need to #define emacs to get the right versions of some files.
231 Some other files - those shared with other GNU utilities - need
232 HAVE_CONFIG_H #defined before they know they can take advantage of
233 the information in ../src/config.h. */
234 ALL_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
235 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS}
236 LINK_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
237 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS}
238 CPP_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
239 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS}
240 /* This was all of CPP_CFLAGS except -Demacs.
241 Now that -Demacs has been deleted from CPP_CFLAGS,
242 this is actually the same as CPP_CFLAGS, but let's not delete it yet. */
243 BASE_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
244 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS}
245 \f
246 /* This is the default compilation command.
247 But we should never rely on it, because some make version
248 failed to find it for getopt.o.
249 Using an explicit command made it work. */
250 .c.o:
251 ${CC} -c ${CPP_CFLAGS} $<
252
253 all: ${DONT_INSTALL} ${UTILITIES} ${INSTALLABLES}
254
255 #ifdef MOVEMAIL_NEEDS_BLESSING
256 blessmail:
257 ../src/emacs -batch -l $(srcdir)/../lisp/mail/blessmail.el
258 chmod +x blessmail
259 #endif
260
261 maybe-blessmail: BLESSMAIL
262 #ifdef MOVEMAIL_NEEDS_BLESSING
263 /* Don't charge ahead and do it! Let the installer decide.
264 ./blessmail ${archlibdir}/movemail */
265 @if [ `wc -l <blessmail` != 2 ] ; then \
266 dir=`sed -n -e 's/echo mail directory = \(.*\)/\1/p' blessmail`; \
267 echo Assuming $$dir is really the mail spool directory, you should; \
268 echo run lib-src/blessmail ${archlibdir}/movemail; \
269 echo as root, to give movemail appropriate permissions.; \
270 echo Do that after running make install.; \
271 fi
272 #endif
273
274 /* Install the internal utilities. Until they are installed, we can
275 just run them directly from lib-src. */
276 ${archlibdir}: all
277 @echo
278 @echo "Installing utilities run internally by Emacs."
279 $(top_srcdir)/mkinstalldirs ${archlibdir}
280 if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \
281 for file in ${UTILITIES}; do \
282 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file ${archlibdir}/$$file ; \
283 done ; \
284 fi
285 if [ `(cd ${archlibdir} && /bin/pwd)` \
286 != `(cd ${srcdir} && /bin/pwd)` ]; then \
287 for file in ${SCRIPTS}; do \
288 $(INSTALL_PROGRAM) ${srcdir}/$$file ${archlibdir}/$$file; \
289 done ; \
290 fi
291
292 install: ${archlibdir}
293 @echo
294 @echo "Installing utilities for users to run."
295 for file in ${INSTALLABLES} ; do \
296 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} ${bindir}/$${file} ; \
297 chmod a+rx ${bindir}/$${file}; \
298 done
299 for file in ${INSTALLABLE_SCRIPTS} ; do \
300 $(INSTALL_PROGRAM) ${srcdir}/$${file} ${bindir}/$${file} ; \
301 chmod a+rx ${bindir}/$${file}; \
302 done
303
304 uninstall:
305 (cd ${bindir}; \
306 rm -f ${INSTALLABLES} ${INSTALLABLE_SCRIPTS})
307 (cd ${archlibdir}; \
308 rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS})
309
310 mostlyclean:
311 -rm -f core *.o
312
313 clean: mostlyclean
314 -rm -f ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
315 -rm -f ../etc/DOC* *.tab.c *.tab.h
316
317 distclean: clean
318 -rm -f TAGS
319 -rm -f Makefile Makefile.c blessmail
320
321 maintainer-clean: distclean
322 true
323
324 extraclean: maintainer-clean
325 -rm -f *~ \#*
326
327 unlock:
328 chmod u+w $(SOURCES)
329
330 relock:
331 chmod u-w $(SOURCES)
332
333 /* Test the contents of the directory. */
334 check:
335 @echo "We don't have any tests for GNU Emacs yet."
336
337 tags: TAGS
338 TAGS: etags
339 etags *.[ch]
340
341 /* This verifies that the non-ASCII characters in the file `testfile'
342 have not been clobbered by whatever means were used to copy and
343 distribute Emacs. If they were clobbered, all the .elc files were
344 clobbered too. */
345 test-distrib: ${srcdir}/test-distrib.c
346 $(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c
347 ./test-distrib ${srcdir}/testfile
348
349 GETOPTOBJS = getopt.o getopt1.o $(ALLOCA)
350 GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h
351 getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h
352 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c
353 getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h
354 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c
355 alloca.o: ${srcdir}/alloca.c
356 ${CC} -c ${BASE_CFLAGS} ${srcdir}/alloca.c
357
358 #ifdef REGEXP_IN_LIBC
359 REGEXPOBJ =
360 REGEXPDEPS =
361 #else
362 REGEXPOBJ = regex.o
363 REGEXPDEPS = $(REGEXPOBJ) ../src/regex.h
364 #endif
365
366 regex.o: ../src/regex.c ../src/regex.h ../src/config.h
367 ${CC} -c ${BASE_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER ${srcdir}/../src/regex.c
368
369 etags: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h
370 $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags
371
372 /* We depend on etags to assure that parallel makes don't write two
373 etags.o files on top of each other. */
374 ctags: etags
375 $(CC) ${ALL_CFLAGS} -DCTAGS -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o ctags
376
377 profile: ${srcdir}/profile.c
378 $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile
379
380 make-docfile: ${srcdir}/make-docfile.c
381 $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile
382
383 digest-doc: ${srcdir}/digest-doc.c
384 $(CC) ${ALL_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc
385
386 sorted-doc: ${srcdir}/sorted-doc.c ${ALLOCA}
387 $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c ${ALLOCA} $(LOADLIBES) -o sorted-doc
388
389 b2m: ${srcdir}/b2m.c ../src/config.h
390 $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c -DVERSION="\"${version}\"" \
391 $(GETOPTOBJS) $(LOADLIBES) -o b2m
392
393 movemail: movemail.o pop.o $(GETOPTDEPS)
394 $(CC) ${LINK_CFLAGS} ${MOVE_FLAGS} movemail.o pop.o $(GETOPTOBJS) $(LOADLIBES) $(LIBMAIL) $(MOVE_LIBS) -o movemail
395
396 movemail.o: ${srcdir}/movemail.c ../src/config.h
397 $(CC) -c ${CPP_CFLAGS} -Demacs ${MOVE_FLAGS} ${srcdir}/movemail.c
398
399 pop.o: ${srcdir}/pop.c
400 $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/pop.c
401
402 cvtmail: ${srcdir}/cvtmail.c
403 $(CC) ${ALL_CFLAGS} ${srcdir}/cvtmail.c $(LOADLIBES) -o cvtmail
404
405 fakemail: ${srcdir}/fakemail.c ../src/config.h
406 $(CC) ${ALL_CFLAGS} ${srcdir}/fakemail.c $(LOADLIBES) -o fakemail
407
408 yow: ${srcdir}/yow.c ../src/paths.h
409 $(CC) ${ALL_CFLAGS} ${srcdir}/yow.c $(LOADLIBES) -o yow
410
411 emacsserver: ${srcdir}/emacsserver.c ../src/config.h
412 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsserver.c $(LOADLIBES) -o emacsserver
413
414 emacsclient: ${srcdir}/emacsclient.c ../src/config.h $(GETOPTDEPS)
415 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsclient.c $(GETOPTOBJS) \
416 -DVERSION=`sed -n -e '/(defconst emacs-version/ s/^[^"]*\("[^"]*"\).*/\1/p' ${srcdir}/../lisp/version.el` \
417 $(LOADLIBES) -o emacsclient
418
419 hexl: ${srcdir}/hexl.c
420 $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
421
422 /* These are NOT included in INSTALLABLES or UTILITIES.
423 See ../src/Makefile.in. */
424 emacstool: ${srcdir}/emacstool.c
425 $(CC) ${srcdir}/emacstool.c -o emacstool ${ALL_CFLAGS} \
426 -lsuntool -lsunwindow -lpixrect $(LOADLIBES)
427
428 /* For SUN Japanese Language Environment. */
429 nemacstool: ${srcdir}/emacstool.c
430 $(CC) -o nemacstool -DJLE ${ALL_CFLAGS} ${srcdir}/emacstool.c \
431 -lsuntool -lmle -lsunwindow -lpixrect $(LOADLIBES)
432
433 xvetool: ${srcdir}/emacstool.c
434 $(CC) -o xvetool -DXVIEW ${ALL_CFLAGS} ${srcdir}/emacstool.c \
435 -lxview -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
436 $(LOADLIBES)
437
438 xveterm: ${srcdir}/emacstool.c
439 $(CC) -o xveterm -DXVIEW -DTTERM ${ALL_CFLAGS} ${srcdir}/emacstool.c \
440 -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
441 $(LOADLIBES)