(auto-insert-alist): Add `provide' to elisp skeleton.
[emacs.git] / lib-src / Makefile.in
blob44e8089c4f728afe53011552488d46413fdfd22b
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)
9 # any later version.
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.
23 SHELL = /bin/sh
25 # ==================== Things `configure' will edit ====================
27 CC=@CC@
28 CFLAGS=@CFLAGS@
29 ALLOCA=@ALLOCA@
30 YACC=@YACC@
31 version=@version@
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
40 # `../configure'.
41 prefix=@prefix@
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
49 # to `../configure'.
50 bindir=@bindir@
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.
64 srcdir=@srcdir@
65 VPATH=@srcdir@
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
79 # to `../configure'.
80 archlibdir=@archlibdir@
82 # ==================== Utility Programs for the Build =================
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 =
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
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=
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
135 #define NOT_C_CODE
136 #include "../src/config.h"
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
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
155 /* Some s/SYSTEM.h files define this to request special libraries. */
156 #ifndef LIBS_SYSTEM
157 #define LIBS_SYSTEM
158 #endif
160 /* Some m/MACHINE.h files define this to request special libraries. */
161 #ifndef LIBS_MACHINE
162 #define LIBS_MACHINE
163 #endif
165 #ifndef C_SWITCH_SYSTEM
166 #define C_SWITCH_SYSTEM
167 #endif
169 #ifndef C_SWITCH_MACHINE
170 #define C_SWITCH_MACHINE
171 #endif
173 #undef MOVEMAIL_NEEDS_BLESSING
174 #ifndef MAIL_USE_FLOCK
175 #ifndef MAIL_USE_LOCKF
176 #define MOVEMAIL_NEEDS_BLESSING
177 #endif
178 #endif
180 #ifdef MOVEMAIL_NEEDS_BLESSING
181 #define BLESSMAIL blessmail
182 #else
183 #define BLESSMAIL
184 #endif
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 */
212 /* If HESIOD is defined, set this to "-lhesiod". */
213 HESIODLIB=
215 MOVE_LIBS=$(KRB4LIB) $(DESLIB) $(KRB5LIB) $(CRYPTOLIB) $(COM_ERRLIB) $(HESIODLIB)
217 #ifdef HAVE_LIBMAIL
218 LIBMAIL=-lmail
219 #endif
221 LOADLIBES=LIBS_SYSTEM LIBS_MACHINE LIB_STANDARD_LIBSRC
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}
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} $<
246 all: ${DONT_INSTALL} ${UTILITIES} ${INSTALLABLES}
248 #ifdef MOVEMAIL_NEEDS_BLESSING
249 blessmail:
250 ../src/emacs -batch -l $(srcdir)/../lisp/mail/blessmail.el
251 chmod +x blessmail
252 #endif
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.; \
265 #endif
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 ; \
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 ; \
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
297 uninstall:
298 (cd ${bindir}; \
299 rm -f ${INSTALLABLES} ${INSTALLABLE_SCRIPTS})
300 (cd ${archlibdir}; \
301 rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS})
303 mostlyclean:
304 -rm -f core *.o
306 clean: mostlyclean
307 -rm -f ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
308 -rm -f ../etc/DOC* fns*.el *.tab.c *.tab.h
310 distclean: clean
311 -rm -f TAGS
312 -rm -f Makefile Makefile.c blessmail
314 maintainer-clean: distclean
315 true
317 extraclean: maintainer-clean
318 -rm -f *~ \#*
320 unlock:
321 chmod u+w $(SOURCES)
323 relock:
324 chmod u-w $(SOURCES)
326 /* Test the contents of the directory. */
327 check:
328 @echo "We don't have any tests for GNU Emacs yet."
330 tags: TAGS
331 TAGS: etags
332 etags *.[ch]
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
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} -Demacs -c ${BASE_CFLAGS} ${srcdir}/alloca.c
351 #ifdef REGEXP_IN_LIBC
352 REGEXPOBJ =
353 REGEXPDEPS =
354 #else
355 REGEXPOBJ = regex.o
356 REGEXPDEPS = $(REGEXPOBJ) $(srcdir)/../src/regex.h
357 #endif
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
362 etags: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h
363 $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags
365 ebrowse: ${srcdir}/ebrowse.c $(GETOPTDEPS) ../src/config.h
366 $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/ebrowse.c $(GETOPTOBJS) $(LOADLIBES) -o ebrowse
368 /* We depend on etags to assure that parallel makes don't write two
369 etags.o files on top of each other. */
370 ctags: etags
371 $(CC) ${ALL_CFLAGS} -DCTAGS -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o ctags
373 profile: ${srcdir}/profile.c ../src/config.h
374 $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile
376 make-docfile: ${srcdir}/make-docfile.c ../src/config.h
377 $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile
379 digest-doc: ${srcdir}/digest-doc.c
380 $(CC) ${ALL_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc
382 sorted-doc: ${srcdir}/sorted-doc.c ${ALLOCA}
383 $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c ${ALLOCA} $(LOADLIBES) -o sorted-doc
385 b2m: ${srcdir}/b2m.c ../src/config.h $(GETOPTDEPS)
386 $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c -DVERSION="\"${version}\"" \
387 $(GETOPTOBJS) $(LOADLIBES) -o b2m
389 movemail: movemail.o pop.o $(GETOPTDEPS)
390 $(CC) ${LINK_CFLAGS} ${MOVE_FLAGS} movemail.o pop.o $(GETOPTOBJS) $(LOADLIBES) $(LIBMAIL) $(MOVE_LIBS) -o movemail
392 movemail.o: ${srcdir}/movemail.c ../src/config.h
393 $(CC) -c ${CPP_CFLAGS} -Demacs ${MOVE_FLAGS} ${srcdir}/movemail.c
395 pop.o: ${srcdir}/pop.c ../src/config.h
396 $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/pop.c
398 cvtmail: ${srcdir}/cvtmail.c
399 $(CC) ${ALL_CFLAGS} ${srcdir}/cvtmail.c $(LOADLIBES) -o cvtmail
401 fakemail: ${srcdir}/fakemail.c ../src/config.h
402 $(CC) ${ALL_CFLAGS} ${srcdir}/fakemail.c $(LOADLIBES) -o fakemail
404 yow: ${srcdir}/yow.c ../src/epaths.h
405 $(CC) ${ALL_CFLAGS} ${srcdir}/yow.c $(LOADLIBES) -o yow
407 emacsserver: ${srcdir}/emacsserver.c ../src/config.h
408 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsserver.c $(LOADLIBES) -o emacsserver
410 emacsclient: ${srcdir}/emacsclient.c ../src/config.h $(GETOPTDEPS)
411 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsclient.c $(GETOPTOBJS) \
412 -DVERSION=`sed -n -e '/(defconst emacs-version/ s/^[^"]*\("[^"]*"\).*/\1/p' ${srcdir}/../lisp/version.el` \
413 $(LOADLIBES) -o emacsclient
415 hexl: ${srcdir}/hexl.c ../src/config.h
416 $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
418 /* These are NOT included in INSTALLABLES or UTILITIES.
419 See ../src/Makefile.in. */
420 emacstool: ${srcdir}/emacstool.c
421 $(CC) ${srcdir}/emacstool.c -o emacstool ${ALL_CFLAGS} \
422 -lsuntool -lsunwindow -lpixrect $(LOADLIBES)
424 /* For SUN Japanese Language Environment. */
425 nemacstool: ${srcdir}/emacstool.c
426 $(CC) -o nemacstool -DJLE ${ALL_CFLAGS} ${srcdir}/emacstool.c \
427 -lsuntool -lmle -lsunwindow -lpixrect $(LOADLIBES)
429 xvetool: ${srcdir}/emacstool.c
430 $(CC) -o xvetool -DXVIEW ${ALL_CFLAGS} ${srcdir}/emacstool.c \
431 -lxview -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
432 $(LOADLIBES)
434 xveterm: ${srcdir}/emacstool.c
435 $(CC) -o xveterm -DXVIEW -DTTERM ${ALL_CFLAGS} ${srcdir}/emacstool.c \
436 -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
437 $(LOADLIBES)