1 # Makefile for lib-src subdirectory in GNU Emacs.
2 # Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
4 # This file is part of GNU Emacs.
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)
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.
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.
21 # Avoid trouble on systems where the `SHELL' variable might be
22 # inherited from the environment.
25 # ==================== Things `configure' will edit ====================
32 configuration
=@configuration@
34 # ==================== Where To Install Things ====================
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
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@
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
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@
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.
63 # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
67 # The top-level source directory, also set by configure.
68 top_srcdir
=@top_srcdir@
70 # ==================== Emacs-specific directories ====================
72 # These variables hold the values Emacs will actually use. They are
73 # based on the values of the standard Make variables above.
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
80 archlibdir
=@archlibdir@
82 # ==================== Utility Programs for the Build =================
84 # ../configure figures out the correct values for these.
86 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
87 INSTALL_DATA
= @INSTALL_DATA@
88 # By default, we uphold the dignity of our programs.
91 # ========================== Lists of Files ===========================
93 # Things that a user might actually run,
94 # which should be installed in bindir.
95 INSTALLABLES
= etags ctags emacsclient b2m ebrowse
96 INSTALLABLE_SCRIPTS
= rcs-checkin grep-changelog
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
103 DONT_INSTALL
= test-distrib make-docfile
105 # Like UTILITIES, but they're not system-dependent, and should not be
106 # deleted by the distclean target.
107 SCRIPTS
= rcs2log vcdiff
109 EXECUTABLES
= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}
111 SOURCES
= COPYING ChangeLog Makefile.in README emacs.csh \
112 makedoc.com
*.
[chy
] rcs2log vcdiff
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
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.
130 # ========================== start of cpp stuff =======================
131 /* From here on
, comments must be done in C syntax.
*/
133 #define NO_SHORTNAMES
134 #define THIS_IS_MAKEFILE
136 #include "../src/config.h"
138 /* We won
't really call alloca;
139 don't let the file name alloca.c
get messed up.
*/
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
150 #ifndef LIB_STANDARD_LIBSRC
151 #define LIB_STANDARD_LIBSRC
155 /* Some s/SYSTEM.h files define this to request special libraries. */
160 /* Some m/MACHINE.h files define this to request special libraries. */
165 #ifndef C_SWITCH_SYSTEM
166 #define C_SWITCH_SYSTEM
169 #ifndef C_SWITCH_MACHINE
170 #define C_SWITCH_MACHINE
173 #undef MOVEMAIL_NEEDS_BLESSING
174 #ifndef MAIL_USE_FLOCK
175 #ifndef MAIL_USE_LOCKF
176 #define MOVEMAIL_NEEDS_BLESSING
180 #ifdef MOVEMAIL_NEEDS_BLESSING
181 #define BLESSMAIL blessmail
197 # ifdef HAVE_LIBDES425
204 # ifdef HAVE_LIBK5CRYPTO
205 CRYPTOLIB = -lk5crypto
207 # ifdef HAVE_LIBCRYPTO
211 # ifdef HAVE_LIBCOM_ERR
212 COM_ERRLIB = -lcom_err
214 #endif /* KERBEROS */
216 /* If HESIOD is defined, set this to "-lhesiod". */
217 #ifdef HAVE_LIBHESIOD
218 # ifdef HAVE_LIBRESOLV
219 HESIODLIB= -lhesiod -lresolv
225 MOVE_LIBS=$(KRB4LIB) $(DESLIB) $(KRB5LIB) $(CRYPTOLIB) $(COM_ERRLIB) $(HESIODLIB)
231 LOADLIBES=LIBS_SYSTEM LIBS_MACHINE LIB_STANDARD_LIBSRC
233 /* We need to #define emacs to get the right versions of some files.
234 Some other files - those shared with other GNU utilities - need
235 HAVE_CONFIG_H #defined before they know they can take advantage of
236 the information in ../src/config.h. */
237 ALL_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
238 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS}
239 LINK_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
240 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS}
241 CPP_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
242 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS}
243 /* This was all of CPP_CFLAGS except -Demacs.
244 Now that -Demacs has been deleted from CPP_CFLAGS,
245 this is actually the same as CPP_CFLAGS, but let's not delete it yet.
*/
246 BASE_CFLAGS
= C_SWITCH_SYSTEM C_SWITCH_MACHINE
-DHAVE_CONFIG_H \
247 -I.
-I..
/src
-I
${srcdir} -I
${srcdir}/..
/src
${CPPFLAGS} ${CFLAGS}
249 /* This is the default compilation command.
250 But we should never rely on it
, because some make version
251 failed to find it for getopt.o.
252 Using an explicit command made it work.
*/
254 ${CC} -c
${CPP_CFLAGS} $<
256 all: ${DONT_INSTALL} ${UTILITIES} ${INSTALLABLES}
258 #ifdef MOVEMAIL_NEEDS_BLESSING
260 ..
/src
/emacs
-batch
-l
$(srcdir)/..
/lisp
/mail
/blessmail.el
264 maybe-blessmail
: BLESSMAIL
265 #ifdef MOVEMAIL_NEEDS_BLESSING
266 /* Don
't charge ahead and do it! Let the installer decide.
267 ./blessmail ${archlibdir}/movemail */
268 @if [ `wc -l <blessmail` != 2 ] ; then \
269 dir=`sed -n -e 's
/echo mail directory
= \
(.
*\
)/\
1/p
' blessmail`; \
270 echo Assuming $$dir is really the mail spool directory, you should; \
271 echo run lib-src/blessmail ${archlibdir}/movemail; \
272 echo as root, to give movemail appropriate permissions.; \
273 echo Do that after running make install.; \
277 /* Install the internal utilities. Until they are installed, we can
278 just run them directly from lib-src. */
281 @echo "Installing utilities run internally by Emacs."
282 $(top_srcdir)/mkinstalldirs ${archlibdir}
283 if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \
284 for file in ${UTILITIES}; do \
285 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file ${archlibdir}/$$file ; \
288 if [ `(cd ${archlibdir} && /bin/pwd)` \
289 != `(cd ${srcdir} && /bin/pwd)` ]; then \
290 for file in ${SCRIPTS}; do \
291 $(INSTALL_PROGRAM) ${srcdir}/$$file ${archlibdir}/$$file; \
295 install: ${archlibdir}
297 @echo "Installing utilities for users to run."
298 for file in ${INSTALLABLES} ; do \
299 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} ${bindir}/$${file} ; \
300 chmod a+rx ${bindir}/$${file}; \
302 for file in ${INSTALLABLE_SCRIPTS} ; do \
303 $(INSTALL_PROGRAM) ${srcdir}/$${file} ${bindir}/$${file} ; \
304 chmod a+rx ${bindir}/$${file}; \
309 rm -f ${INSTALLABLES} ${INSTALLABLE_SCRIPTS})
311 rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS})
317 -rm -f ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
318 -rm -f ../etc/DOC* fns*.el *.tab.c *.tab.h
322 -rm -f Makefile Makefile.c blessmail
324 maintainer-clean: distclean
327 extraclean: maintainer-clean
336 /* Test the contents of the directory. */
338 @echo "We don't have any tests for GNU Emacs yet.
"
344 /* This verifies that the non-ASCII characters in the file `testfile'
345 have not been clobbered by whatever means were used to copy and
346 distribute Emacs. If they were clobbered, all the .elc files were
348 test-distrib: ${srcdir}/test-distrib.c
349 $(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c
350 ./test-distrib ${srcdir}/testfile
352 GETOPTOBJS = getopt.o getopt1.o $(ALLOCA)
353 GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h
354 getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h
355 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c
356 getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h
357 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c
358 alloca.o: ${srcdir}/alloca.c
359 ${CC} -Demacs -c ${BASE_CFLAGS} ${srcdir}/alloca.c
361 #ifdef REGEXP_IN_LIBC
366 REGEXPDEPS = $(REGEXPOBJ) $(srcdir)/../src/regex.h
369 regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h ../src/config.h
370 ${CC} -c ${BASE_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER ${srcdir}/../src/regex.c
372 etags: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h
373 $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags
375 ebrowse: ${srcdir}/ebrowse.c $(GETOPTDEPS) ../src/config.h
376 $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/ebrowse.c $(GETOPTOBJS) $(LOADLIBES) -o ebrowse
378 /* We depend on etags to assure that parallel makes don't write two
379 etags.o files on top of each other. */
381 $(CC) ${ALL_CFLAGS} -DCTAGS -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o ctags
383 profile: ${srcdir}/profile.c ../src/config.h
384 $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile
386 make-docfile: ${srcdir}/make-docfile.c ../src/config.h
387 $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile
389 digest-doc: ${srcdir}/digest-doc.c
390 $(CC) ${ALL_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc
392 sorted-doc: ${srcdir}/sorted-doc.c ${ALLOCA}
393 $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c ${ALLOCA} $(LOADLIBES) -o sorted-doc
395 b2m: ${srcdir}/b2m.c ../src/config.h $(GETOPTDEPS)
396 $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c -DVERSION="\"${version}\"" \
397 $(GETOPTOBJS) $(LOADLIBES) -o b2m
399 movemail: movemail.o pop.o $(GETOPTDEPS)
400 $(CC) ${LINK_CFLAGS} ${MOVE_FLAGS} movemail.o pop.o $(GETOPTOBJS) $(LOADLIBES) $(LIBMAIL) $(MOVE_LIBS) -o movemail
402 movemail.o: ${srcdir}/movemail.c ../src/config.h
403 $(CC) -c ${CPP_CFLAGS} -Demacs ${MOVE_FLAGS} ${srcdir}/movemail.c
405 pop.o: ${srcdir}/pop.c ../src/config.h
406 $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/pop.c
408 cvtmail: ${srcdir}/cvtmail.c
409 $(CC) ${ALL_CFLAGS} ${srcdir}/cvtmail.c $(LOADLIBES) -o cvtmail
411 fakemail: ${srcdir}/fakemail.c ../src/config.h
412 $(CC) ${ALL_CFLAGS} ${srcdir}/fakemail.c $(LOADLIBES) -o fakemail
414 yow: ${srcdir}/yow.c ../src/epaths.h
415 $(CC) ${ALL_CFLAGS} ${srcdir}/yow.c $(LOADLIBES) -o yow
417 emacsserver: ${srcdir}/emacsserver.c ../src/config.h
418 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsserver.c $(LOADLIBES) -o emacsserver
420 emacsclient: ${srcdir}/emacsclient.c ../src/config.h $(GETOPTDEPS)
421 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsclient.c $(GETOPTOBJS) \
422 -DVERSION=`sed -n -e '/(defconst emacs-version/ s/^[^"]*\
("[^"]*"\).*/\1/p' ${srcdir}/../lisp/version.el` \
423 $(LOADLIBES) -o emacsclient
425 hexl: ${srcdir}/hexl.c ../src/config.h
426 $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
428 /* These are NOT included in INSTALLABLES or UTILITIES.
429 See ../src/Makefile.in. */
430 emacstool: ${srcdir}/emacstool.c
431 $(CC) ${srcdir}/emacstool.c -o emacstool ${ALL_CFLAGS} \
432 -lsuntool -lsunwindow -lpixrect $(LOADLIBES)
434 /* For SUN Japanese Language Environment. */
435 nemacstool: ${srcdir}/emacstool.c
436 $(CC) -o nemacstool -DJLE ${ALL_CFLAGS} ${srcdir}/emacstool.c \
437 -lsuntool -lmle -lsunwindow -lpixrect $(LOADLIBES)
439 xvetool: ${srcdir}/emacstool.c
440 $(CC) -o xvetool -DXVIEW ${ALL_CFLAGS} ${srcdir}/emacstool.c \
441 -lxview -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
444 xveterm: ${srcdir}/emacstool.c
445 $(CC) -o xveterm -DXVIEW -DTTERM ${ALL_CFLAGS} ${srcdir}/emacstool.c \
446 -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \