[MAIL_USE_POP]: Add support for "-g" and "-k"
[bpt/emacs.git] / lib-src / Makefile.in
CommitLineData
eb4252f7
RS
1# Makefile for lib-src subdirectory in GNU Emacs.
2# Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
29ed0542 3
eb4252f7 4# This file is part of GNU Emacs.
29ed0542 5
eb4252f7
RS
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.
29ed0542 10
eb4252f7
RS
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.
29ed0542 15
eb4252f7
RS
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
3b7ad313
EN
18# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19# Boston, MA 02111-1307, USA.
29ed0542 20
eb4252f7
RS
21# Avoid trouble on systems where the `SHELL' variable might be
22# inherited from the environment.
f7dbcf3c
JB
23SHELL = /bin/sh
24
eb4252f7 25# ==================== Things `configure' will edit ====================
c71beb75 26
b93f2493
BF
27CC=@CC@
28CFLAGS=@CFLAGS@
29ALLOCA=@ALLOCA@
b93f2493
BF
30YACC=@YACC@
31version=@version@
cf770692 32configuration=@configuration@
c71beb75 33
eb4252f7 34# ==================== Where To Install Things ====================
c71beb75 35
eb4252f7
RS
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'.
b93f2493 41prefix=@prefix@
c71beb75 42
eb4252f7
RS
43# Like `prefix', but used for architecture-specific files. This is
44# set with the --exec-prefix option to `../configure'.
b93f2493 45exec_prefix=@exec_prefix@
c71beb75 46
eb4252f7
RS
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'.
b93f2493 50bindir=@bindir@
c71beb75 51
eb4252f7
RS
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
424b6d2b
RS
55# --libexecdir option to `../configure'.
56libexecdir=@libexecdir@
c71beb75 57
eb4252f7
RS
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.
b93f2493
BF
62srcdir=@srcdir@
63VPATH=@srcdir@
c71beb75 64
2d521ee6
DM
65# The top-level source directory, also set by configure.
66top_srcdir=@top_srcdir@
67
eb4252f7 68# ==================== Emacs-specific directories ====================
c71beb75 69
eb4252f7
RS
70# These variables hold the values Emacs will actually use. They are
71# based on the values of the standard Make variables above.
c71beb75 72
eb4252f7
RS
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'.
b93f2493 78archlibdir=@archlibdir@
41f86d5a 79
eb4252f7 80# ==================== Utility Programs for the Build =================
c71beb75 81
eb4252f7 82# ../configure figures out the correct values for these.
b93f2493 83INSTALL = @INSTALL@
b93f2493
BF
84INSTALL_PROGRAM = @INSTALL_PROGRAM@
85INSTALL_DATA = @INSTALL_DATA@
ae6ed0ac
RS
86# By default, we uphold the dignity of our programs.
87INSTALL_STRIP =
c71beb75 88
eb4252f7 89# ========================== Lists of Files ===========================
f7dbcf3c 90
eb4252f7
RS
91# Things that a user might actually run,
92# which should be installed in bindir.
0d73e8e3
JB
93INSTALLABLES = etags ctags emacsclient b2m
94INSTALLABLE_SCRIPTS = rcs-checkin
f7dbcf3c 95
eb4252f7
RS
96# Things that Emacs runs internally, or during the build process,
97# which should not be installed in bindir.
ebf9219e
RS
98UTILITIES= profile digest-doc \
99 sorted-doc movemail cvtmail fakemail yow emacsserver hexl
f7dbcf3c 100
2d521ee6 101DONT_INSTALL= test-distrib make-docfile
5aae6601 102
eb4252f7
RS
103# Like UTILITIES, but they're not system-dependent, and should not be
104# deleted by the distclean target.
b7cceaf1
JB
105SCRIPTS= rcs2log vcdiff
106
0d73e8e3 107EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}
f7dbcf3c 108
5c579a75 109SOURCES = COPYING ChangeLog Makefile.in README emacs.csh \
41f86d5a
ER
110 makedoc.com *.[chy] rcs2log vcdiff
111
81f94052
RS
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.
126MOVE_FLAGS=
127
eb4252f7
RS
128# ========================== start of cpp stuff =======================
129/* From here on, comments must be done in C syntax. */
130
131#define NO_SHORTNAMES
fcd4533c 132#define THIS_IS_MAKEFILE
eb4252f7
RS
133#define NOT_C_CODE
134#include "../src/config.h"
135
89b3f894
RS
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
5e70aa9c
RS
142/* Some machines don't find the standard C libraries in the usual place. */
143#ifndef ORDINARY_LINK
fcd4533c
KH
144#ifndef LIB_STANDARD_LIBSRC
145#define LIB_STANDARD_LIBSRC -lc
5e70aa9c
RS
146#endif
147#else
fcd4533c
KH
148#ifndef LIB_STANDARD_LIBSRC
149#define LIB_STANDARD_LIBSRC
5e70aa9c
RS
150#endif
151#endif
152
f11c1c14 153/* Some s/SYSTEM.h files define this to request special libraries. */
eb4252f7
RS
154#ifndef LIBS_SYSTEM
155#define LIBS_SYSTEM
156#endif
157
f11c1c14 158/* Some m/MACHINE.h files define this to request special libraries. */
eb4252f7
RS
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
ae6ed0ac 184#ifdef KERBEROS
93de505d
RS
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#endif /* KERBEROS
ae6ed0ac
RS
209
210/* If HESIOD is defined, set this to "-lhesiod". */
211HESIODLIB=
212
93de505d 213MOVE_LIBS=$(KRB4LIB) $(DESLIB) $(KRB5LIB) $(CRYPTOLIB) $(COM_ERRLIB) $(HESIODLIB)
6fd14a09 214
6e3dda29
RS
215#ifdef HAVE_LIBMAIL
216LIBMAIL=-lmail
217#endif
218
fcd4533c 219LOADLIBES=LIBS_SYSTEM LIBS_MACHINE LIB_STANDARD_LIBSRC
eb4252f7 220
29ed0542
RS
221/* We need to #define emacs to get the right versions of some files.
222 Some other files - those shared with other GNU utilities - need
223 HAVE_CONFIG_H #defined before they know they can take advantage of
224 the information in ../src/config.h. */
56bdb2f5 225ALL_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
3e883207 226 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS}
56bdb2f5 227LINK_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
3e883207 228 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS}
56bdb2f5 229CPP_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
b2d7a9c7 230 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS}
56bdb2f5
RS
231/* This was all of CPP_CFLAGS except -Demacs.
232 Now that -Demacs has been deleted from CPP_CFLAGS,
233 this is actually the same as CPP_CFLAGS, but let's not delete it yet. */
1d0b600d 234BASE_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
20cda85b 235 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS}
29ed0542
RS
236\f
237/* This is the default compilation command.
238 But we should never rely on it, because some make version
239 failed to find it for getopt.o.
240 Using an explicit command made it work. */
c38a040d 241.c.o:
5293b432 242 ${CC} -c ${CPP_CFLAGS} $<
c71beb75 243
0731825e 244all: ${DONT_INSTALL} ${UTILITIES} ${INSTALLABLES}
c71beb75 245
c6207d0d 246#ifdef MOVEMAIL_NEEDS_BLESSING
f675ecb5 247blessmail:
828524de 248 ../src/emacs -batch -l $(srcdir)/../lisp/mail/blessmail.el
c6207d0d
KH
249 chmod +x blessmail
250#endif
251
d19f95fe
RS
252maybe-blessmail: BLESSMAIL
253#ifdef MOVEMAIL_NEEDS_BLESSING
254/* Don't charge ahead and do it! Let the installer decide.
255 ./blessmail ${archlibdir}/movemail */
256 @if [ `wc -l <blessmail` != 2 ] ; then \
257 dir=`sed -n -e 's/echo mail directory = \(.*\)/\1/p' blessmail`; \
258 echo Assuming $$dir is really the mail spool directory, you should; \
fed76e78 259 echo run lib-src/blessmail ${archlibdir}/movemail; \
d19f95fe 260 echo as root, to give movemail appropriate permissions.; \
eb4252f7 261 echo Do that after running make install.; \
d19f95fe
RS
262 fi
263#endif
264
29ed0542
RS
265/* Install the internal utilities. Until they are installed, we can
266 just run them directly from lib-src. */
d19f95fe 267${archlibdir}: all
c71beb75
JB
268 @echo
269 @echo "Installing utilities run internally by Emacs."
2d521ee6 270 $(top_srcdir)/mkinstalldirs ${archlibdir}
f7d3e7d0 271 if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \
544d556f 272 for file in ${UTILITIES}; do \
ae6ed0ac 273 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file ${archlibdir}/$$file ; \
544d556f 274 done ; \
ad600343
RS
275 fi
276 if [ `(cd ${archlibdir} && /bin/pwd)` \
277 != `(cd ${srcdir} && /bin/pwd)` ]; then \
544d556f 278 for file in ${SCRIPTS}; do \
c61a529e 279 $(INSTALL_PROGRAM) ${srcdir}/$$file ${archlibdir}/$$file; \
c71beb75 280 done ; \
0268f19b 281 fi
f7dbcf3c 282
c71beb75
JB
283install: ${archlibdir}
284 @echo
285 @echo "Installing utilities for users to run."
b70cff71 286 for file in ${INSTALLABLES} ; do \
3e2c8981 287 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} ${bindir}/$${file} ; \
c37a4294 288 chmod a+rx ${bindir}/$${file}; \
0268f19b 289 done
b70cff71 290 for file in ${INSTALLABLE_SCRIPTS} ; do \
c61a529e 291 $(INSTALL_PROGRAM) ${srcdir}/$${file} ${bindir}/$${file} ; \
c37a4294 292 chmod a+rx ${bindir}/$${file}; \
0268f19b 293 done
f7dbcf3c 294
39b649dd
JB
295uninstall:
296 (cd ${bindir}; \
297 rm -f ${INSTALLABLES} ${INSTALLABLE_SCRIPTS})
298 (cd ${archlibdir}; \
299 rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS})
300
a17d2c25
RS
301mostlyclean:
302 -rm -f core *.o
303
304clean: mostlyclean
5aae6601 305 -rm -f ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
1e8259bb 306 -rm -f ../etc/DOC* *.tab.c *.tab.h
f7dbcf3c 307
39b649dd 308distclean: clean
5c579a75 309 -rm -f TAGS
b2959c9d 310 -rm -f Makefile Makefile.c blessmail
f7dbcf3c 311
26873b72 312maintainer-clean: distclean
39b649dd 313 true
c71beb75 314
a01c76d7 315extraclean: maintainer-clean
c71beb75 316 -rm -f *~ \#*
f7dbcf3c 317
41f86d5a
ER
318unlock:
319 chmod u+w $(SOURCES)
320
321relock:
322 chmod u-w $(SOURCES)
323
29ed0542 324/* Test the contents of the directory. */
f7dbcf3c
JB
325check:
326 @echo "We don't have any tests for GNU Emacs yet."
327
93548af1 328tags: TAGS
f7dbcf3c
JB
329TAGS: etags
330 etags *.[ch]
331
29ed0542
RS
332/* This verifies that the non-ASCII characters in the file `testfile'
333 have not been clobbered by whatever means were used to copy and
334 distribute Emacs. If they were clobbered, all the .elc files were
335 clobbered too. */
0d73e8e3 336test-distrib: ${srcdir}/test-distrib.c
c88a7f88 337 $(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c
0d73e8e3 338 ./test-distrib ${srcdir}/testfile
f7dbcf3c 339
c38a040d 340GETOPTOBJS = getopt.o getopt1.o $(ALLOCA)
0d73e8e3 341GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h
b90589d8 342getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h
0268f19b 343 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c
b90589d8 344getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h
0268f19b 345 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c
20cda85b 346alloca.o: ${srcdir}/alloca.c
1d0b600d 347 ${CC} -c ${BASE_CFLAGS} ${srcdir}/alloca.c
f7dbcf3c 348
e63ceebf
RS
349#ifdef REGEXP_IN_LIBC
350REGEXPOBJ =
351REGEXPDEPS =
352#else
66ab94d9
KH
353REGEXPOBJ = regex.o
354REGEXPDEPS = $(REGEXPOBJ) ../src/regex.h
e63ceebf
RS
355#endif
356
641acd26 357regex.o: ../src/regex.c ../src/regex.h ../src/config.h
1d0b600d 358 ${CC} -c ${BASE_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER ${srcdir}/../src/regex.c
66ab94d9
KH
359
360etags: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h
0b532ca2 361 $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags
f7dbcf3c 362
29ed0542
RS
363/* We depend on etags to assure that parallel makes don't write two
364 etags.o files on top of each other. */
1ff164dd 365ctags: etags
59aacecb 366 $(CC) ${ALL_CFLAGS} -DCTAGS -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o ctags
f7dbcf3c 367
379fb9c8
RS
368profile: ${srcdir}/profile.c
369 $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile
370
0d73e8e3 371make-docfile: ${srcdir}/make-docfile.c
3e883207 372 $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile
f7dbcf3c 373
0d73e8e3 374digest-doc: ${srcdir}/digest-doc.c
3e883207 375 $(CC) ${ALL_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc
f7dbcf3c 376
1e3255d8 377sorted-doc: ${srcdir}/sorted-doc.c ${ALLOCA}
3e883207 378 $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c ${ALLOCA} $(LOADLIBES) -o sorted-doc
f7dbcf3c 379
0d73e8e3 380b2m: ${srcdir}/b2m.c ../src/config.h
1817145f
KH
381 $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c -DVERSION="\"${version}\"" \
382 $(GETOPTOBJS) $(LOADLIBES) -o b2m
f7dbcf3c 383
7c1b5778
RS
384movemail: movemail.o pop.o $(GETOPTDEPS)
385 $(CC) ${LINK_CFLAGS} ${MOVE_FLAGS} movemail.o pop.o $(GETOPTOBJS) $(LOADLIBES) $(LIBMAIL) $(MOVE_LIBS) -o movemail
81f94052
RS
386
387movemail.o: ${srcdir}/movemail.c ../src/config.h
56bdb2f5 388 $(CC) -c ${CPP_CFLAGS} -Demacs ${MOVE_FLAGS} ${srcdir}/movemail.c
81f94052
RS
389
390pop.o: ${srcdir}/pop.c
391 $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/pop.c
f7dbcf3c 392
0d73e8e3 393cvtmail: ${srcdir}/cvtmail.c
3e883207 394 $(CC) ${ALL_CFLAGS} ${srcdir}/cvtmail.c $(LOADLIBES) -o cvtmail
f7dbcf3c 395
0d73e8e3 396fakemail: ${srcdir}/fakemail.c ../src/config.h
3e883207 397 $(CC) ${ALL_CFLAGS} ${srcdir}/fakemail.c $(LOADLIBES) -o fakemail
f7dbcf3c 398
0d73e8e3 399yow: ${srcdir}/yow.c ../src/paths.h
3e883207 400 $(CC) ${ALL_CFLAGS} ${srcdir}/yow.c $(LOADLIBES) -o yow
f7dbcf3c 401
0d73e8e3 402emacsserver: ${srcdir}/emacsserver.c ../src/config.h
3e883207 403 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsserver.c $(LOADLIBES) -o emacsserver
f7dbcf3c 404
deec6f99
RS
405emacsclient: ${srcdir}/emacsclient.c ../src/config.h $(GETOPTDEPS)
406 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsclient.c $(GETOPTOBJS) \
407 -DVERSION=`sed -n -e '/(defconst emacs-version/ s/^[^"]*\("[^"]*"\).*/\1/p' ${srcdir}/../lisp/version.el` \
408 $(LOADLIBES) -o emacsclient
f7dbcf3c 409
0d73e8e3 410hexl: ${srcdir}/hexl.c
3e883207 411 $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
f7dbcf3c 412
29ed0542 413/* These are NOT included in INSTALLABLES or UTILITIES.
b2959c9d 414 See ../src/Makefile.in. */
0d73e8e3 415emacstool: ${srcdir}/emacstool.c
3e883207 416 $(CC) ${srcdir}/emacstool.c -o emacstool ${ALL_CFLAGS} \
f7dbcf3c
JB
417 -lsuntool -lsunwindow -lpixrect $(LOADLIBES)
418
29ed0542 419/* For SUN Japanese Language Environment. */
0d73e8e3 420nemacstool: ${srcdir}/emacstool.c
3e883207 421 $(CC) -o nemacstool -DJLE ${ALL_CFLAGS} ${srcdir}/emacstool.c \
f7dbcf3c
JB
422 -lsuntool -lmle -lsunwindow -lpixrect $(LOADLIBES)
423
0d73e8e3 424xvetool: ${srcdir}/emacstool.c
3e883207 425 $(CC) -o xvetool -DXVIEW ${ALL_CFLAGS} ${srcdir}/emacstool.c \
f7dbcf3c
JB
426 -lxview -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
427 $(LOADLIBES)
428
0d73e8e3 429xveterm: ${srcdir}/emacstool.c
3e883207 430 $(CC) -o xveterm -DXVIEW -DTTERM ${ALL_CFLAGS} ${srcdir}/emacstool.c \
f7dbcf3c
JB
431 -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
432 $(LOADLIBES)