* lib-src/Makefile.in: Remove ^L, old makes choke on it.
[bpt/emacs.git] / lib-src / Makefile.in
1 # Makefile for lib-src subdirectory in GNU Emacs.
2 # Copyright (C) 1985, 1987, 1988, 1993, 1994, 2001, 2002, 2003, 2004,
3 # 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4
5 # This file is part of GNU Emacs.
6
7 # GNU Emacs is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # GNU Emacs is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19
20
21 # Avoid trouble on systems where the `SHELL' variable might be
22 # inherited from the environment.
23 SHELL = /bin/sh
24
25 # Following ../lisp/Makefile.in.
26 EMACS = ../src/emacs
27 EMACSOPT = -batch --no-site-file --multibyte
28
29 # ==================== Things `configure' will edit ====================
30
31 CC=@CC@
32 CFLAGS=@CFLAGS@
33 version=@version@
34 ## Used in $archlibdir.
35 configuration=@configuration@
36 EXEEXT=@EXEEXT@
37 C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
38 C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
39 C_WARNINGS_SWITCH = @C_WARNINGS_SWITCH@
40 PROFILING_CFLAGS = @PROFILING_CFLAGS@
41 PROFILING_LDFLAGS = @PROFILING_LDFLAGS@
42
43 # Program name transformation.
44 TRANSFORM = @program_transform_name@
45
46 # ==================== Where To Install Things ====================
47
48 # The default location for installation. Everything is placed in
49 # subdirectories of this directory. The default values for many of
50 # the variables below are expressed in terms of this one, so you may
51 # not need to change them. This is set with the --prefix option to
52 # `../configure'.
53 prefix=@prefix@
54
55 # Like `prefix', but used for architecture-specific files. This is
56 # set with the --exec-prefix option to `../configure'.
57 exec_prefix=@exec_prefix@
58
59 # Where to install Emacs and other binaries that people will want to
60 # run directly (like etags). This is set with the --bindir option
61 # to `../configure'.
62 bindir=@bindir@
63
64 # Where to install and expect executable files to be run by Emacs
65 # rather than directly by users, and other architecture-dependent
66 # data. ${archlibdir} is usually below this. This is set with the
67 # --libexecdir option to `../configure'.
68 libexecdir=@libexecdir@
69
70 # Directory for local state files for all programs.
71 localstatedir=@localstatedir@
72
73 # Where to find the source code. This is set by the configure
74 # script's `--srcdir' option. However, the value of ${srcdir} in
75 # this makefile is not identical to what was specified with --srcdir,
76 # since the variable here has `/lib-src' added at the end.
77
78 # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
79 srcdir=@srcdir@
80 VPATH=@srcdir@
81
82 # The top-level source directory, also set by configure.
83 top_srcdir=@top_srcdir@
84
85 # ==================== Emacs-specific directories ====================
86
87 # These variables hold the values Emacs will actually use. They are
88 # based on the values of the standard Make variables above.
89
90 # Where to put executables to be run by Emacs rather than the user.
91 # This path usually includes the Emacs version and configuration name,
92 # so that multiple configurations for multiple versions of Emacs may
93 # be installed at once. This can be set with the --archlibdir option
94 # to `../configure'.
95 archlibdir=@archlibdir@
96
97 gamedir=@gamedir@
98 gameuser=@gameuser@
99
100 # ==================== Utility Programs for the Build =================
101
102 # ../configure figures out the correct values for these.
103 INSTALL = @INSTALL@
104 INSTALL_PROGRAM = @INSTALL_PROGRAM@
105 INSTALL_DATA = @INSTALL_DATA@
106 INSTALL_SCRIPT = @INSTALL_SCRIPT@
107 # By default, we uphold the dignity of our programs.
108 INSTALL_STRIP =
109
110 # ========================== Lists of Files ===========================
111
112 # Things that a user might actually run, which should be installed in bindir.
113 INSTALLABLES = etags${EXEEXT} ctags${EXEEXT} emacsclient${EXEEXT} \
114 b2m${EXEEXT} ebrowse${EXEEXT}
115
116 INSTALLABLE_SCRIPTS = rcs-checkin grep-changelog
117 STAMP_INST_SCRIPTS = stamp-rcs-checkin stamp-grep-changelog
118
119 # Things that Emacs runs internally, or during the build process,
120 # which should not be installed in bindir.
121 UTILITIES = profile${EXEEXT} digest-doc${EXEEXT} sorted-doc${EXEEXT} \
122 movemail${EXEEXT} fakemail${EXEEXT} \
123 hexl${EXEEXT} update-game-score${EXEEXT}
124
125 DONT_INSTALL= test-distrib${EXEEXT} make-docfile${EXEEXT}
126
127 # Like UTILITIES, but they're not system-dependent, and should not be
128 # deleted by the distclean target.
129 SCRIPTS= rcs2log vcdiff
130 STAMP_SCRIPTS= stamp-rcs2log stamp-vcdiff
131
132 EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}
133
134 # Specify additional -D flags for movemail. Options:
135 # -DMAIL_USE_FLOCK or -DMAIL_USE_LOCKF (use flock or lockf for file locking).
136 # See the comments about locking in movemail.c. Normally the values
137 # set by configure should be correct and you should not need to do anything.
138 # If neither flag is set, you need to use blessmail.
139 MOVE_FLAGS=
140
141 ## Empty if either MAIL_USE_FLOCK or MAIL_USE_LOCKF, else need-blessmail.
142 BLESSMAIL_TARGET=@BLESSMAIL_TARGET@
143
144 ## -lkrb if HAVE_LIBKRB or -lkrb4 if HAVE_LIBKRB4
145 KRB4LIB=@KRB4LIB@
146 ## -ldes if HAVE_LIBDES or -ldes425 if HAVE_LIBDES425
147 DESLIB=@DESLIB@
148 ## -lkrb5 if HAVE_LIBKRB5
149 KRB5LIB=@KRB5LIB@
150 ## -lk5crypto if HAVE_LIBK5CRYPTO or -lcrypto if HAVE_LIBCRYPTO
151 CRYPTOLIB=@CRYPTOLIB@
152 ## -lcom_err if HAVE_LIBCOM_ERR
153 COM_ERRLIB=@COM_ERRLIB@
154 ## -lhesiod if HAVE_LIBHESIOD
155 LIBHESIOD=@LIBHESIOD@
156 ## -lresolv if HAVE_LIBRESOLV
157 LIBRESOLV=@LIBRESOLV@
158 ## -llockfile if HAVE_LIBLOCKFILE or -lmail if HAVE_LIBMAIL
159 LIBS_MAIL=@LIBS_MAIL@
160
161 ## Extra libraries to use when linking movemail.
162 LIBS_MOVE = $(LIBS_MAIL) $(KRB4LIB) $(DESLIB) $(KRB5LIB) $(CRYPTOLIB) \
163 $(COM_ERRLIB) $(LIBHESIOD) $(LIBRESOLV)
164
165 ## Some systems define this to request special libraries.
166 LIBS_SYSTEM = @LIBS_SYSTEM@
167
168 # Those files shared with other GNU utilities need HAVE_CONFIG_H
169 # defined before they know they can take advantage of the information
170 # in ../src/config.h.
171 BASE_CFLAGS = $(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) ${C_WARNINGS_SWITCH} \
172 -DHAVE_CONFIG_H -I. -I../src -I${srcdir} -I${srcdir}/../src
173
174 ALL_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${LDFLAGS} ${CPPFLAGS} ${CFLAGS}
175 LINK_CFLAGS = ${BASE_CFLAGS} ${PROFILING_LDFLAGS} ${LDFLAGS} ${CFLAGS}
176 CPP_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${CPPFLAGS} ${CFLAGS}
177
178 LOADLIBES=$(LIBS_SYSTEM)
179
180 ## This is the default compilation command.
181 ## But we should never rely on it, because some make version failed to
182 ## find it for getopt.o.
183 ## Using an explicit command made it work.
184 .c.o:
185 ${CC} -c ${CPP_CFLAGS} $<
186
187 all: ${DONT_INSTALL} ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} ${STAMP_INST_SCRIPTS} ${STAMP_SCRIPTS}
188
189 ## These targets copy the scripts into the build directory so that
190 ## they can be run from there in an uninstalled Emacs.
191 ## The "-" is prepended because some versions of cp barf when srcdir
192 ## is the current directory, and thus the file will be copied into itself.
193 stamp-rcs2log: $(srcdir)/rcs2log
194 -cp -p $(srcdir)/rcs2log rcs2log
195 touch $@
196
197 stamp-rcs-checkin: $(srcdir)/rcs-checkin
198 -cp -p $(srcdir)/rcs-checkin rcs-checkin
199 touch $@
200
201 stamp-grep-changelog: $(srcdir)/grep-changelog
202 -cp -p $(srcdir)/grep-changelog grep-changelog
203 touch $@
204
205 stamp-vcdiff: $(srcdir)/vcdiff
206 -cp -p $(srcdir)/vcdiff vcdiff
207 touch $@
208
209 ## Only used if we need blessmail, but no harm in always defining.
210 ## This makes the actual blessmail executable.
211 blessmail:
212 $(EMACS) $(EMACSOPT) -l $(srcdir)/../lisp/mail/blessmail.el
213 chmod +x blessmail
214
215 ## This checks if we need to run blessmail.
216 ## Do not charge ahead and do it! Let the installer decide.
217 need-blessmail: blessmail
218 @if [ `wc -l <blessmail` != 2 ] ; then \
219 dir=`sed -n -e 's/echo mail directory = \(.*\)/\1/p' blessmail`; \
220 echo Assuming $$dir is really the mail spool directory, you should; \
221 echo run lib-src/blessmail $(DESTDIR)${archlibdir}/movemail${EXEEXT}; \
222 echo as root, to give movemail${EXEEXT} appropriate permissions.; \
223 echo Do that after running make install.; \
224 fi
225
226 ## This is the target invoked by the top-level Makefile.
227 maybe-blessmail: $(BLESSMAIL_TARGET)
228
229 ## Install the internal utilities. Until they are installed, we can
230 ## just run them directly from lib-src.
231 ## If the chown/chmod commands fail, that is not a big deal.
232 ## update-game-score will detect at runtime that it is not setuid,
233 ## and handle things accordingly.
234 $(DESTDIR)${archlibdir}: all
235 @echo
236 @echo "Installing utilities run internally by Emacs."
237 umask 022; $(top_srcdir)/mkinstalldirs $(DESTDIR)${archlibdir}
238 if [ `(cd $(DESTDIR)${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \
239 for file in ${UTILITIES}; do \
240 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file $(DESTDIR)${archlibdir}/$$file ; \
241 done ; \
242 fi
243 umask 022; $(top_srcdir)/mkinstalldirs $(DESTDIR)${gamedir}; \
244 touch $(DESTDIR)${gamedir}/snake-scores; \
245 touch $(DESTDIR)${gamedir}/tetris-scores
246 -if chown ${gameuser} $(DESTDIR)${archlibdir}/update-game-score && chmod u+s $(DESTDIR)${archlibdir}/update-game-score; then \
247 chown ${gameuser} $(DESTDIR)${gamedir}; \
248 chmod u=rwx,g=rwx,o=rx $(DESTDIR)${gamedir}; \
249 fi
250 if [ `(cd $(DESTDIR)${archlibdir} && /bin/pwd)` \
251 != `(cd ${srcdir} && /bin/pwd)` ]; then \
252 for file in ${SCRIPTS}; do \
253 $(INSTALL_SCRIPT) ${srcdir}/$$file $(DESTDIR)${archlibdir}/$$file; \
254 done ; \
255 fi
256
257 install: $(DESTDIR)${archlibdir}
258 @echo
259 @echo "Installing utilities for users to run."
260 for file in ${INSTALLABLES} ; do \
261 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'` ; \
262 chmod a+rx $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'`; \
263 done
264 for file in ${INSTALLABLE_SCRIPTS} ; do \
265 $(INSTALL_SCRIPT) ${srcdir}/$${file} $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'` ; \
266 chmod a+rx $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'`; \
267 done
268
269 uninstall:
270 (cd $(DESTDIR)${bindir}; \
271 for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}; do \
272 rm -f $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'` ; \
273 done)
274 if [ -d $(DESTDIR)${archlibdir} ]; then \
275 (cd $(DESTDIR)${archlibdir} && \
276 rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}) \
277 fi
278
279 mostlyclean:
280 -rm -f core *.o getopt.h getopt.h-t
281
282 clean: mostlyclean
283 -rm -f ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
284 -rm -f fns*.el *.tab.c *.tab.h stamp-*
285
286 distclean: clean
287 -rm -f TAGS
288 -rm -f Makefile blessmail
289
290 maintainer-clean: distclean
291 true
292
293 extraclean: maintainer-clean
294 -rm -f *~ \#*
295
296 ## Test the contents of the directory.
297 check:
298 @echo "We don't have any tests for the lib-src/ directory yet."
299
300 tags: TAGS
301 TAGS: etags${EXEEXT}
302 etags *.[ch]
303
304 ## This verifies that the non-ASCII characters in the file \`testfile\'
305 ## have not been clobbered by whatever means were used to copy and
306 ## distribute Emacs. If they were clobbered, all the .elc files were
307 ## clobbered too.
308 test-distrib${EXEEXT}: ${srcdir}/test-distrib.c
309 $(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c
310 ./test-distrib ${srcdir}/testfile
311
312 ## We need the following in order to create a <getopt.h> when the system
313 ## does not have one that works with the given compiler.
314 GETOPT_H = @GETOPT_H@
315 getopt.h: getopt_.h
316 cp $(srcdir)/getopt_.h $@-t
317 mv $@-t $@
318
319 GETOPTOBJS = @GETOPTOBJS@
320 GETOPTDEPS = $(GETOPTOBJS) $(GETOPT_H)
321 getopt.o: ${srcdir}/getopt.c $(GETOPT_H) ${srcdir}/gettext.h
322 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c
323 getopt1.o: ${srcdir}/getopt1.c $(GETOPT_H)
324 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c
325
326 REGEXPOBJ = regex.o
327 REGEXPDEPS = $(REGEXPOBJ) $(srcdir)/../src/regex.h
328
329 regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h ../src/config.h
330 ${CC} -c ${CPP_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
331 ${srcdir}/../src/regex.c
332
333 etags${EXEEXT}: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h
334 $(CC) ${ALL_CFLAGS} -DEMACS_NAME="\"GNU Emacs\"" \
335 -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) \
336 $(REGEXPOBJ) $(LOADLIBES) -o etags
337
338 ebrowse${EXEEXT}: ${srcdir}/ebrowse.c $(GETOPTDEPS) ../src/config.h
339 $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" \
340 ${srcdir}/ebrowse.c $(GETOPTOBJS) $(LOADLIBES) -o ebrowse
341
342 ## We depend on etags to assure that parallel makes do not write two
343 ## etags.o files on top of each other.
344 ctags${EXEEXT}: etags${EXEEXT}
345 $(CC) ${ALL_CFLAGS} -DCTAGS -DEMACS_NAME="\"GNU Emacs\"" \
346 -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) \
347 $(REGEXPOBJ) $(LOADLIBES) -o ctags
348
349 profile${EXEEXT}: ${srcdir}/profile.c ../src/config.h
350 $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile
351
352 make-docfile${EXEEXT}: ${srcdir}/make-docfile.c ../src/config.h
353 $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) \
354 -o make-docfile
355
356 digest-doc${EXEEXT}: ${srcdir}/digest-doc.c
357 $(CC) ${ALL_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc
358
359 sorted-doc${EXEEXT}: ${srcdir}/sorted-doc.c
360 $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c $(LOADLIBES) -o sorted-doc
361
362 b2m${EXEEXT}: ${srcdir}/b2m.c ../src/config.h $(GETOPTDEPS)
363 $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c -DVERSION="\"${version}\"" \
364 $(GETOPTOBJS) $(LOADLIBES) -o b2m
365
366 movemail${EXEEXT}: movemail.o pop.o $(GETOPTDEPS)
367 $(CC) ${LINK_CFLAGS} ${MOVE_FLAGS} movemail.o pop.o \
368 $(GETOPTOBJS) $(LOADLIBES) $(LIBS_MOVE) -o movemail
369
370 movemail.o: ${srcdir}/movemail.c ../src/config.h $(GETOPT_H)
371 $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/movemail.c
372
373 pop.o: ${srcdir}/pop.c ../src/config.h
374 $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/pop.c
375
376 fakemail${EXEEXT}: ${srcdir}/fakemail.c ../src/config.h
377 $(CC) ${ALL_CFLAGS} ${srcdir}/fakemail.c $(LOADLIBES) -o fakemail
378
379 emacsclient${EXEEXT}: ${srcdir}/emacsclient.c ../src/config.h $(GETOPTDEPS)
380 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsclient.c $(GETOPTOBJS) \
381 -DVERSION="\"${version}\"" \
382 $(LOADLIBES) -o emacsclient
383
384 hexl${EXEEXT}: ${srcdir}/hexl.c ../src/config.h
385 $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
386
387 update-game-score${EXEEXT}: update-game-score.o $(GETOPTDEPS)
388 $(CC) ${LINK_CFLAGS} update-game-score.o $(GETOPTOBJS) \
389 $(LOADLIBES) -o update-game-score
390
391 update-game-score.o: ${srcdir}/update-game-score.c ../src/config.h $(GETOPT_H)
392 $(CC) -c ${CPP_CFLAGS} ${srcdir}/update-game-score.c \
393 -DHAVE_SHARED_GAME_DIR="\"$(gamedir)\""
394
395 ## Makefile ends here.