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