Don't use build-aux/install-sh -d directly
[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-2012
3 # 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 --no-site-lisp
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 PROFILING_CFLAGS = @PROFILING_CFLAGS@
40 WARN_CFLAGS = @WARN_CFLAGS@
41 WERROR_CFLAGS = @WERROR_CFLAGS@
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 MKDIR_P = @MKDIR_P@
110
111 # ========================== Lists of Files ===========================
112
113 # Things that a user might actually run, which should be installed in bindir.
114 INSTALLABLES = etags${EXEEXT} ctags${EXEEXT} emacsclient${EXEEXT} \
115 ebrowse${EXEEXT}
116
117 INSTALLABLE_SCRIPTS = rcs-checkin grep-changelog
118 STAMP_INST_SCRIPTS = stamp-rcs-checkin stamp-grep-changelog
119
120 # Things that Emacs runs internally, or during the build process,
121 # which should not be installed in bindir.
122 UTILITIES = profile${EXEEXT} movemail${EXEEXT} hexl${EXEEXT} \
123 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 # All files that are created by the linker, i.e., whose names end in ${EXEEXT}.
133 EXE_FILES = ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
134
135 # Specify additional -D flags for movemail. Options:
136 # -DMAIL_USE_FLOCK or -DMAIL_USE_LOCKF (use flock or lockf for file locking).
137 # See the comments about locking in movemail.c. Normally the values
138 # set by configure should be correct and you should not need to do anything.
139 # If neither flag is set, you need to use blessmail.
140 MOVE_FLAGS=
141
142 ## Empty if either MAIL_USE_FLOCK or MAIL_USE_LOCKF, else need-blessmail.
143 BLESSMAIL_TARGET=@BLESSMAIL_TARGET@
144
145 ## -lkrb if HAVE_LIBKRB or -lkrb4 if HAVE_LIBKRB4
146 KRB4LIB=@KRB4LIB@
147 ## -ldes if HAVE_LIBDES or -ldes425 if HAVE_LIBDES425
148 DESLIB=@DESLIB@
149 ## -lkrb5 if HAVE_LIBKRB5
150 KRB5LIB=@KRB5LIB@
151 ## -lk5crypto if HAVE_LIBK5CRYPTO or -lcrypto if HAVE_LIBCRYPTO
152 CRYPTOLIB=@CRYPTOLIB@
153 ## -lcom_err if HAVE_LIBCOM_ERR
154 COM_ERRLIB=@COM_ERRLIB@
155 ## -lhesiod if HAVE_LIBHESIOD
156 LIBHESIOD=@LIBHESIOD@
157 ## -lresolv if HAVE_LIBRESOLV
158 LIBRESOLV=@LIBRESOLV@
159 ## -llockfile if HAVE_LIBLOCKFILE or -lmail if HAVE_LIBMAIL
160 LIBS_MAIL=@LIBS_MAIL@
161
162 ## Extra libraries to use when linking movemail.
163 LIBS_MOVE = $(LIBS_MAIL) $(KRB4LIB) $(DESLIB) $(KRB5LIB) $(CRYPTOLIB) \
164 $(COM_ERRLIB) $(LIBHESIOD) $(LIBRESOLV)
165
166 ## Some systems define this to request special libraries.
167 LIBS_SYSTEM = @LIBS_SYSTEM@
168
169 # Those files shared with other GNU utilities need HAVE_CONFIG_H
170 # defined before they know they can take advantage of the information
171 # in ../src/config.h.
172 BASE_CFLAGS = $(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \
173 $(WARN_CFLAGS) $(WERROR_CFLAGS) \
174 -DHAVE_CONFIG_H -I. -I../src -I../lib \
175 -I${srcdir} -I${srcdir}/../src -I${srcdir}/../lib
176
177 ALL_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${LDFLAGS} ${CPPFLAGS} ${CFLAGS}
178 LINK_CFLAGS = ${BASE_CFLAGS} ${LDFLAGS} ${CFLAGS}
179 CPP_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${CPPFLAGS} ${CFLAGS}
180
181 all: ${EXE_FILES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} ${STAMP_INST_SCRIPTS} ${STAMP_SCRIPTS}
182
183 LOADLIBES = ../lib/libgnu.a $(LIBS_SYSTEM)
184 $(EXE_FILES): ../lib/libgnu.a
185
186 ## These targets copy the scripts into the build directory so that
187 ## they can be run from there in an uninstalled Emacs.
188 ## Nothing to do if pwd = srcdir.
189 insrcdir=[ "`/bin/pwd`" = "`(cd $(srcdir) && /bin/pwd)`" ]
190
191 stamp-rcs2log: $(srcdir)/rcs2log
192 $(insrcdir) || cp -p $(srcdir)/rcs2log rcs2log
193 touch $@
194
195 stamp-rcs-checkin: $(srcdir)/rcs-checkin
196 $(insrcdir) || cp -p $(srcdir)/rcs-checkin rcs-checkin
197 touch $@
198
199 stamp-grep-changelog: $(srcdir)/grep-changelog
200 $(insrcdir) || cp -p $(srcdir)/grep-changelog grep-changelog
201 touch $@
202
203 stamp-vcdiff: $(srcdir)/vcdiff
204 $(insrcdir) || cp -p $(srcdir)/vcdiff vcdiff
205 touch $@
206
207 ## Only used if we need blessmail, but no harm in always defining.
208 ## This makes the actual blessmail executable.
209 blessmail:
210 $(EMACS) $(EMACSOPT) -l $(srcdir)/../lisp/mail/blessmail.el
211 chmod +x blessmail
212
213 ## This checks if we need to run blessmail.
214 ## Do not charge ahead and do it! Let the installer decide.
215 need-blessmail: blessmail
216 @if [ `wc -l <blessmail` != 2 ] ; then \
217 dir=`sed -n -e 's/echo mail directory = \(.*\)/\1/p' blessmail`; \
218 echo Assuming $$dir is really the mail spool directory, you should; \
219 echo run lib-src/blessmail $(DESTDIR)${archlibdir}/movemail${EXEEXT}; \
220 echo as root, to give movemail${EXEEXT} appropriate permissions.; \
221 echo Do that after running make install.; \
222 fi
223
224 ## This is the target invoked by the top-level Makefile.
225 maybe-blessmail: $(BLESSMAIL_TARGET)
226
227 ## Install the internal utilities. Until they are installed, we can
228 ## just run them directly from lib-src.
229 ## If the chown/chmod commands fail, that is not a big deal.
230 ## update-game-score will detect at runtime that it is not setuid,
231 ## and handle things accordingly.
232 $(DESTDIR)${archlibdir}: all
233 @echo
234 @echo "Installing utilities run internally by Emacs."
235 umask 022; ${MKDIR_P} $(DESTDIR)${archlibdir}
236 if [ `(cd $(DESTDIR)${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \
237 for file in ${UTILITIES}; do \
238 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file $(DESTDIR)${archlibdir}/$$file ; \
239 done ; \
240 fi
241 umask 022; ${MKDIR_P} $(DESTDIR)${gamedir}; \
242 touch $(DESTDIR)${gamedir}/snake-scores; \
243 touch $(DESTDIR)${gamedir}/tetris-scores
244 -if chown ${gameuser} $(DESTDIR)${archlibdir}/update-game-score && chmod u+s $(DESTDIR)${archlibdir}/update-game-score; then \
245 chown ${gameuser} $(DESTDIR)${gamedir}; \
246 chmod u=rwx,g=rwx,o=rx $(DESTDIR)${gamedir}; \
247 fi
248 if [ `(cd $(DESTDIR)${archlibdir} && /bin/pwd)` \
249 != `(cd ${srcdir} && /bin/pwd)` ]; then \
250 for file in ${SCRIPTS}; do \
251 $(INSTALL_SCRIPT) ${srcdir}/$$file $(DESTDIR)${archlibdir}/$$file; \
252 done ; \
253 fi
254
255 install: $(DESTDIR)${archlibdir}
256 @echo
257 @echo "Installing utilities for users to run."
258 for file in ${INSTALLABLES} ; do \
259 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'` ; \
260 chmod a+rx $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'`; \
261 done
262 for file in ${INSTALLABLE_SCRIPTS} ; do \
263 $(INSTALL_SCRIPT) ${srcdir}/$${file} $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'` ; \
264 chmod a+rx $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'`; \
265 done
266
267 uninstall:
268 (cd $(DESTDIR)${bindir}; \
269 for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}; do \
270 rm -f $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'` ; \
271 done)
272 if [ -d $(DESTDIR)${archlibdir} ]; then \
273 (cd $(DESTDIR)${archlibdir} && \
274 rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}) \
275 fi
276
277 mostlyclean:
278 -rm -f core *.o
279
280 clean: mostlyclean
281 -rm -f ${EXE_FILES}
282 -rm -f ${STAMP_INST_SCRIPTS} ${STAMP_SCRIPTS}
283
284 distclean: clean
285 -rm -f TAGS
286 -rm -f Makefile blessmail
287
288 maintainer-clean: distclean
289 true
290
291 extraclean: maintainer-clean
292 -rm -f *~ \#*
293
294 ## Test the contents of the directory.
295 check:
296 @echo "We don't have any tests for the lib-src/ directory yet."
297
298 tags: TAGS
299 TAGS: etags${EXEEXT}
300 etags *.[ch]
301
302 ## This verifies that the non-ASCII characters in the file \`testfile\'
303 ## have not been clobbered by whatever means were used to copy and
304 ## distribute Emacs. If they were clobbered, all the .elc files were
305 ## clobbered too.
306 test-distrib${EXEEXT}: ${srcdir}/test-distrib.c
307 $(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c
308 ./test-distrib ${srcdir}/testfile
309
310 ../lib/libgnu.a: ../src/config.h
311 cd ../lib && $(MAKE) libgnu.a
312
313 regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h ../src/config.h
314 ${CC} -c ${CPP_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
315 ${srcdir}/../src/regex.c
316
317 etags${EXEEXT}: ${srcdir}/etags.c regex.o ../src/config.h
318 $(CC) ${ALL_CFLAGS} -DEMACS_NAME="\"GNU Emacs\"" \
319 -DVERSION="\"${version}\"" ${srcdir}/etags.c \
320 regex.o $(LOADLIBES) -o etags
321
322 ebrowse${EXEEXT}: ${srcdir}/ebrowse.c ${srcdir}/../lib/min-max.h ../src/config.h
323 $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" \
324 ${srcdir}/ebrowse.c $(LOADLIBES) -o ebrowse
325
326 ## We depend on etags to assure that parallel makes do not write two
327 ## etags.o files on top of each other.
328 ctags${EXEEXT}: etags${EXEEXT}
329 $(CC) ${ALL_CFLAGS} -DCTAGS -DEMACS_NAME="\"GNU Emacs\"" \
330 -DVERSION="\"${version}\"" ${srcdir}/etags.c \
331 regex.o $(LOADLIBES) -o ctags
332
333 profile${EXEEXT}: ${srcdir}/profile.c ../src/config.h
334 $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile
335
336 make-docfile${EXEEXT}: ${srcdir}/make-docfile.c ../src/config.h
337 $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) \
338 -o make-docfile
339
340 movemail${EXEEXT}: ${srcdir}/movemail.c pop.o ../src/config.h
341 $(CC) ${ALL_CFLAGS} ${MOVE_FLAGS} ${srcdir}/movemail.c pop.o \
342 $(LOADLIBES) $(LIBS_MOVE) -o movemail
343
344 pop.o: ${srcdir}/pop.c ${srcdir}/../lib/min-max.h ../src/config.h
345 $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/pop.c
346
347 emacsclient${EXEEXT}: ${srcdir}/emacsclient.c ../src/config.h
348 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsclient.c \
349 -DVERSION="\"${version}\"" \
350 $(LOADLIBES) -o emacsclient
351
352 hexl${EXEEXT}: ${srcdir}/hexl.c ../src/config.h
353 $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
354
355 update-game-score${EXEEXT}: ${srcdir}/update-game-score.c ../src/config.h
356 $(CC) ${ALL_CFLAGS} -DHAVE_SHARED_GAME_DIR="\"$(gamedir)\"" \
357 ${srcdir}/update-game-score.c $(LOADLIBES) -o update-game-score
358
359 ## Makefile ends here.