Update copyright year to 2015
[emacs.git] / lib-src / Makefile.in
blob485e2d2eaccb351c66a6d8cce55c685314883db7
1 ### @configure_input@
3 # Copyright (C) 1985, 1987-1988, 1993-1994, 2001-2015 Free Software
4 # Foundation, Inc.
6 # This file is part of GNU Emacs.
8 # GNU Emacs is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
13 # GNU Emacs is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21 SHELL = @SHELL@
23 # Following ../lisp/Makefile.in.
24 EMACS = ../src/emacs
25 EMACSOPT = -batch --no-site-file --no-site-lisp
27 # ==================== Things `configure' will edit ====================
29 CC=@CC@
30 CFLAGS=@CFLAGS@
31 CPPFLAGS = @CPPFLAGS@
32 LDFLAGS = @LDFLAGS@
34 version=@version@
35 ## Used in $archlibdir.
36 configuration=@configuration@
37 EXEEXT=@EXEEXT@
38 C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
39 C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
40 PROFILING_CFLAGS = @PROFILING_CFLAGS@
41 WARN_CFLAGS = @WARN_CFLAGS@
42 WERROR_CFLAGS = @WERROR_CFLAGS@
43 UPDATE_MANIFEST = @UPDATE_MANIFEST@
45 # Program name transformation.
46 TRANSFORM = @program_transform_name@
48 # 'make' verbosity.
49 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
51 AM_V_CC = $(am__v_CC_@AM_V@)
52 am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
53 am__v_CC_0 = @echo " CC " $@;
54 am__v_CC_1 =
56 AM_V_CCLD = $(am__v_CCLD_@AM_V@)
57 am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
58 am__v_CCLD_0 = @echo " CCLD " $@;
59 am__v_CCLD_1 =
61 # ==================== Where To Install Things ====================
63 # Location to install Emacs.app under GNUstep / Mac OS X.
64 # Later values may use this.
65 ns_appbindir=@ns_appbindir@
67 # The default location for installation. Everything is placed in
68 # subdirectories of this directory. The default values for many of
69 # the variables below are expressed in terms of this one, so you may
70 # not need to change them. This is set with the --prefix option to
71 # `../configure'.
72 prefix=@prefix@
74 # Like `prefix', but used for architecture-specific files. This is
75 # set with the --exec-prefix option to `../configure'.
76 exec_prefix=@exec_prefix@
78 # Where to install Emacs and other binaries that people will want to
79 # run directly (like etags). This is set with the --bindir option
80 # to `../configure'.
81 bindir=@bindir@
83 # Where to install and expect executable files to be run by Emacs
84 # rather than directly by users, and other architecture-dependent
85 # data. ${archlibdir} is usually below this. This is set with the
86 # --libexecdir option to `../configure'.
87 libexecdir=@libexecdir@
89 # Directory for local state files for all programs.
90 localstatedir=@localstatedir@
92 # Where to find the source code. This is set by the configure
93 # script's `--srcdir' option. However, the value of ${srcdir} in
94 # this makefile is not identical to what was specified with --srcdir,
95 # since the variable here has `/lib-src' added at the end.
97 # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
98 srcdir=@srcdir@
99 VPATH=@srcdir@
101 # The top-level source directory, also set by configure.
102 top_srcdir=@top_srcdir@
103 # MinGW CPPFLAGS may use this.
104 abs_top_srcdir=@abs_top_srcdir@
106 # ==================== Emacs-specific directories ====================
108 # These variables hold the values Emacs will actually use. They are
109 # based on the values of the standard Make variables above.
111 # Where to put executables to be run by Emacs rather than the user.
112 # This path usually includes the Emacs version and configuration name,
113 # so that multiple configurations for multiple versions of Emacs may
114 # be installed at once. This can be set with the --archlibdir option
115 # to `../configure'.
116 archlibdir=@archlibdir@
118 gamedir=@gamedir@
119 gameuser=@gameuser@
121 # ==================== Utility Programs for the Build =================
123 # ../configure figures out the correct values for these.
124 INSTALL = @INSTALL@
125 INSTALL_PROGRAM = @INSTALL_PROGRAM@
126 INSTALL_SCRIPT = @INSTALL_SCRIPT@
127 # By default, we uphold the dignity of our programs.
128 INSTALL_STRIP =
129 MKDIR_P = @MKDIR_P@
131 # ========================== Lists of Files ===========================
133 # emacsclientw.exe for MinGW, empty otherwise
134 CLIENTW = @CLIENTW@
136 # Things that a user might actually run, which should be installed in bindir.
137 INSTALLABLES = etags${EXEEXT} ctags${EXEEXT} emacsclient${EXEEXT} $(CLIENTW) \
138 ebrowse${EXEEXT}
140 # Things that Emacs runs internally, or during the build process,
141 # which should not be installed in bindir.
142 UTILITIES = profile${EXEEXT} movemail${EXEEXT} hexl${EXEEXT} \
143 update-game-score${EXEEXT}
145 DONT_INSTALL= make-docfile${EXEEXT}
147 # Like UTILITIES, but they're not system-dependent, and should not be
148 # deleted by the distclean target.
149 SCRIPTS= rcs2log $(UPDATE_MANIFEST)
151 # All files that are created by the linker, i.e., whose names end in ${EXEEXT}.
152 EXE_FILES = ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
154 # Specify additional -D flags for movemail. Options:
155 # -DMAIL_USE_FLOCK or -DMAIL_USE_LOCKF (use flock or lockf for file locking).
156 # See the comments about locking in movemail.c. Normally the values
157 # set by configure should be correct and you should not need to do anything.
158 # If neither flag is set, you need to use blessmail.
159 MOVE_FLAGS=
161 ## Empty if either MAIL_USE_FLOCK or MAIL_USE_LOCKF, else need-blessmail.
162 BLESSMAIL_TARGET=@BLESSMAIL_TARGET@
164 ## -lkrb or -lkrb4 if needed
165 KRB4LIB=@KRB4LIB@
166 ## -ldes or -ldes425 if needed
167 DESLIB=@DESLIB@
168 ## -lkrb5 if needed
169 KRB5LIB=@KRB5LIB@
170 ## -lk5crypto or -lcrypto if needed
171 CRYPTOLIB=@CRYPTOLIB@
172 ## -lcom_err if needed
173 COM_ERRLIB=@COM_ERRLIB@
174 ## -lhesiod if needed
175 LIBHESIOD=@LIBHESIOD@
176 ## -lresolv if HAVE_LIBRESOLV
177 LIBRESOLV=@LIBRESOLV@
178 ## -llockfile if HAVE_LIBLOCKFILE or -lmail if HAVE_LIBMAIL
179 LIBS_MAIL=@LIBS_MAIL@
180 ## empty or -lrt or -lposix4 if HAVE_CLOCK_GETTIME
181 LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
182 ## empty or -lrt or -lposix4 if HAVE_FDATASYNC
183 LIB_FDATASYNC = @LIB_FDATASYNC@
184 ## empty or -lwsock2 for MinGW
185 LIB_WSOCK32=@LIB_WSOCK32@
187 ## Extra libraries to use when linking movemail.
188 LIBS_MOVE = $(LIBS_MAIL) $(KRB4LIB) $(DESLIB) $(KRB5LIB) $(CRYPTOLIB) \
189 $(COM_ERRLIB) $(LIBHESIOD) $(LIBRESOLV) $(LIB_WSOCK32)
191 ## Extra libraries when linking emacsclient
192 ## (empty or -lcomctl32 for MinGW)
193 LIBS_ECLIENT = @LIBS_ECLIENT@
195 ## Extra object files for linking for MinGW
196 NTLIB = @NTLIB@
197 CLIENTRES = @CLIENTRES@
198 WINDRES = @WINDRES@
200 ## Some systems define this to request special libraries.
201 LIBS_SYSTEM = @LIBS_SYSTEM@
203 BASE_CFLAGS = $(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \
204 $(WARN_CFLAGS) $(WERROR_CFLAGS) \
205 -I. -I../src -I../lib \
206 -I${srcdir} -I${srcdir}/../src -I${srcdir}/../lib
208 ALL_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${LDFLAGS} ${CPPFLAGS} ${CFLAGS}
209 ## Unused.
210 LINK_CFLAGS = ${BASE_CFLAGS} ${LDFLAGS} ${CFLAGS}
211 CPP_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${CPPFLAGS} ${CFLAGS}
213 # Configuration files for .o files to depend on.
214 config_h = ../src/config.h $(srcdir)/../src/conf_post.h
216 all: ${EXE_FILES} ${SCRIPTS}
218 .PHONY: all need-blessmail maybe-blessmail
220 LOADLIBES = ../lib/libgnu.a $(LIBS_SYSTEM)
221 $(EXE_FILES): ../lib/libgnu.a
223 ## Only used if we need blessmail, but no harm in always defining.
224 ## This makes the actual blessmail executable.
225 blessmail: $(srcdir)/../lisp/mail/blessmail.el
226 $(EMACS) $(EMACSOPT) -l $<
227 chmod +x $@
229 ## This checks if we need to run blessmail.
230 ## Do not charge ahead and do it! Let the installer decide.
231 need-blessmail: blessmail
232 @if [ `wc -l <blessmail` != 2 ] ; then \
233 dir=`sed -n -e 's/echo mail directory = \(.*\)/\1/p' blessmail`; \
234 echo "Assuming $$dir is really the mail spool directory, you should"; \
235 echo "run lib-src/blessmail $(DESTDIR)${archlibdir}/movemail${EXEEXT}"; \
236 echo "as root, to give movemail${EXEEXT} appropriate permissions."; \
237 echo "Do that after running make install."; \
240 ## This is the target invoked by the top-level Makefile.
241 maybe-blessmail: $(BLESSMAIL_TARGET)
243 ## Install the internal utilities. Until they are installed, we can
244 ## just run them directly from lib-src.
245 ## If the chown/chmod commands fail, that is not a big deal.
246 ## update-game-score will detect at runtime that it is not setuid,
247 ## and handle things accordingly.
248 $(DESTDIR)${archlibdir}: all
249 @echo
250 @echo "Installing utilities run internally by Emacs."
251 umask 022; ${MKDIR_P} "$(DESTDIR)${archlibdir}"
252 exp_archlibdir=`cd "$(DESTDIR)${archlibdir}" && /bin/pwd`; \
253 if [ "$$exp_archlibdir" != "`/bin/pwd`" ]; then \
254 for file in ${UTILITIES}; do \
255 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file "$(DESTDIR)${archlibdir}/$$file" ; \
256 done ; \
258 umask 022; ${MKDIR_P} "$(DESTDIR)${gamedir}"; \
259 touch "$(DESTDIR)${gamedir}/snake-scores"; \
260 touch "$(DESTDIR)${gamedir}/tetris-scores"
261 -if chown ${gameuser} "$(DESTDIR)${archlibdir}/update-game-score${EXEEXT}" && chmod u+s "$(DESTDIR)${archlibdir}/update-game-score${EXEEXT}"; then \
262 chown ${gameuser} "$(DESTDIR)${gamedir}"; \
263 chmod u=rwx,g=rwx,o=rx "$(DESTDIR)${gamedir}"; \
265 exp_archlibdir=`cd "$(DESTDIR)${archlibdir}" && /bin/pwd`; \
266 if [ "$$exp_archlibdir" != "`cd ${srcdir} && /bin/pwd`" ]; then \
267 for file in ${SCRIPTS}; do \
268 $(INSTALL_SCRIPT) ${srcdir}/$$file "$(DESTDIR)${archlibdir}/$$file"; \
269 done ; \
272 .PHONY: install uninstall mostlyclean clean distclean maintainer-clean
273 .PHONY: bootstrap-clean extraclean check tags
275 install: $(DESTDIR)${archlibdir}
276 @echo
277 @echo "Installing utilities for users to run."
278 umask 022; ${MKDIR_P} "$(DESTDIR)${bindir}"
279 for file in ${INSTALLABLES} ; do \
280 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \
281 done
283 uninstall:
284 for file in ${INSTALLABLES}; do \
285 rm -f "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \
286 done
287 if [ -d "$(DESTDIR)${archlibdir}" ]; then \
288 (cd "$(DESTDIR)${archlibdir}" && rm -f ${UTILITIES} ${SCRIPTS}) \
291 mostlyclean:
292 -rm -f core *.o *.res
294 clean: mostlyclean
295 -rm -f ${EXE_FILES}
297 distclean: clean
298 -rm -f TAGS
299 -rm -f Makefile blessmail
301 bootstrap-clean maintainer-clean: distclean
302 true
304 extraclean: maintainer-clean
305 -rm -f *~ \#*
307 ## Test the contents of the directory.
308 check:
309 @echo "We don't have any tests for the lib-src/ directory yet."
311 tags: TAGS
312 TAGS: etags${EXEEXT}
313 etags *.[ch]
315 ../lib/libgnu.a: $(config_h)
316 $(MAKE) -C ../lib libgnu.a
318 regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h $(config_h)
319 $(AM_V_CC)$(CC) -c $(CPP_CFLAGS) $<
322 etags_deps = ${srcdir}/etags.c regex.o $(NTLIB) $(config_h)
323 etags_cflags = -DEMACS_NAME="\"GNU Emacs\"" -DVERSION="\"${version}\"" -o $@
324 etags_libs = regex.o $(NTLIB) $(LOADLIBES)
326 etags${EXEEXT}: ${etags_deps}
327 $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $(etags_cflags) $< $(etags_libs)
329 ## ctags.c is distinct from etags.c so that parallel makes do not write two
330 ## etags.o files on top of each other.
331 ## FIXME?
332 ## Can't we use a wrapper that calls 'etags --ctags'?
333 ctags${EXEEXT}: ${srcdir}/ctags.c ${etags_deps}
334 $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $(etags_cflags) $< $(etags_libs)
336 ebrowse${EXEEXT}: ${srcdir}/ebrowse.c ${srcdir}/../lib/min-max.h $(NTLIB) \
337 $(config_h)
338 $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" \
339 $< $(NTLIB) $(LOADLIBES) -o $@
341 profile${EXEEXT}: ${srcdir}/profile.c $(NTLIB) $(config_h)
342 $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $< \
343 $(NTLIB) $(LOADLIBES) $(LIB_CLOCK_GETTIME) -o $@
345 make-docfile${EXEEXT}: ${srcdir}/make-docfile.c $(NTLIB) $(config_h)
346 $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $< $(NTLIB) $(LOADLIBES) -o $@
348 movemail${EXEEXT}: ${srcdir}/movemail.c pop.o $(NTLIB) $(config_h)
349 $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} ${MOVE_FLAGS} $< pop.o \
350 $(NTLIB) $(LOADLIBES) $(LIBS_MOVE) -o $@
352 pop.o: ${srcdir}/pop.c ${srcdir}/pop.h ${srcdir}/../lib/min-max.h $(config_h)
353 $(AM_V_CC)$(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} $<
355 emacsclient${EXEEXT}: ${srcdir}/emacsclient.c $(NTLIB) $(config_h)
356 $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $< \
357 -DVERSION="\"${version}\"" $(NTLIB) $(LOADLIBES) $(LIB_FDATASYNC) \
358 $(LIB_WSOCK32) $(LIBS_ECLIENT) -o $@
360 emacsclientw${EXEEXT}: ${srcdir}/emacsclient.c $(NTLIB) $(CLIENTRES) $(config_h)
361 $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $(CLIENTRES) -mwindows $< \
362 -DVERSION="\"${version}\"" $(LOADLIBES) $(LIB_FDATASYNC) \
363 $(LIB_WSOCK32) $(LIBS_ECLIENT) -o $@
365 NTINC = ${srcdir}/../nt/inc
366 NTDEPS = $(NTINC)/ms-w32.h $(NTINC)/sys/stat.h $(NTINC)/inttypes.h \
367 $(NTINC)/stdint.h $(NTINC)/pwd.h $(NTINC)/sys/time.h $(NTINC)/stdbool.h \
368 $(NTINC)/sys/wait.h $(NTINC)/unistd.h $(NTINC)/sys/file.h $(NTINC)/netdb.h
370 # The dependency on $(NTDEPS) is a trick intended to cause recompile of
371 # programs on MinGW whenever some private header in nt/inc is modified.
372 ntlib.o: ${srcdir}/ntlib.c ${srcdir}/ntlib.h $(NTDEPS)
373 $(AM_V_CC)$(CC) -c ${CPP_CFLAGS} $<
375 hexl${EXEEXT}: ${srcdir}/hexl.c $(NTLIB) $(config_h)
376 $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $< $(LOADLIBES) -o $@
378 update-game-score${EXEEXT}: ${srcdir}/update-game-score.c $(NTLIB) $(config_h)
379 $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} \
380 -DHAVE_SHARED_GAME_DIR="\"$(gamedir)\"" \
381 $< $(NTLIB) $(LOADLIBES) -o $@
383 emacsclient.res: ../nt/emacsclient.rc $(NTINC)/../icons/emacs.ico
384 $(WINDRES) -O coff --include-dir=$(NTINC)/.. -o $@ $<
386 ## Makefile ends here.