Don't set LOCAL_SUBDIRS in many places and SUBDIRS in a few and
[krb5.git] / src / config / pre.in
1 ############################################################
2 ## config/pre.in
3 ## common prefix for all Makefile.in in the Kerberos V5 tree.
4 ##
5
6 # These are set per-directory by autoconf 2.52 and 2.53:
7 #  srcdir=@srcdir@
8 #  top_srcdir=@top_srcdir@
9 # but these are only set by autoconf 2.53, and thus not useful to us on
10 # Mac OS X yet (as of 10.2):
11 #  abs_srcdir=@abs_srcdir@
12 #  abs_top_srcdir=@abs_top_srcdir@
13 #  builddir=@builddir@
14 #  abs_builddir=@abs_builddir@
15 #  top_builddir=@top_builddir@
16 #  abs_top_builddir=@abs_top_builddir@
17 # The "top" variables refer to the directory with the configure (or
18 # config.status) script.
19
20 WHAT = unix
21 SHELL=/bin/sh
22
23 all:: all-$(WHAT)
24
25 clean:: clean-$(WHAT)
26
27 distclean:: distclean-$(WHAT)
28
29 install:: install-$(WHAT)
30
31 check:: check-$(WHAT)
32
33 install-headers:: install-headers-$(WHAT)
34
35 ##############################
36 # Recursion rule support
37 #
38
39 # The commands for the recursion targets live in config/post.in.
40 #
41 # General form of recursion rules:
42 #
43 # Each recursive target foo-unix has related targets: foo-prerecurse,
44 # foo-recurse, and foo-postrecurse
45 #
46 # The foo-recurse rule is in post.in.  It is what actually recursively
47 # calls make.
48 #
49 # foo-recurse depends on foo-prerecurse, so any targets that must be
50 # built before descending into subdirectories must be dependencies of
51 # foo-prerecurse.
52 #
53 # foo-postrecurse depends on foo-recurse, but targets that must be
54 # built after descending into subdirectories should be have
55 # foo-recurse as dependencies in addition to being listed under
56 # foo-postrecurse, to avoid ordering issues.
57 #
58 # The foo-prerecurse, foo-recurse, and foo-postrecurse rules are all
59 # single-colon rules, to avoid nasty ordering problems with
60 # double-colon rules.
61 #
62 # e.g.
63 # all:: includes foo
64 # foo:
65 #       echo foo
66 # includes::
67 #       echo bar
68 # includes::
69 #       echo baz
70 #
71 # will result in "bar", "foo", "baz" on AIX, and possibly others.
72 all-unix:: all-postrecurse
73 all-postrecurse: all-recurse
74 all-recurse: all-prerecurse
75
76 all-prerecurse:
77 all-postrecurse:
78
79 clean-unix:: clean-postrecurse
80 clean-postrecurse: clean-recurse
81 clean-recurse: clean-prerecurse
82
83 clean-prerecurse:
84 clean-postrecurse:
85
86 distclean-unix: distclean-postrecurse
87 distclean-postrecurse: distclean-recurse
88 distclean-recurse: distclean-prerecurse
89
90 distclean-prerecurse:
91 distclean-postrecurse:
92
93 install-unix:: install-postrecurse
94 install-postrecurse: install-recurse
95 install-recurse: install-prerecurse
96
97 install-prerecurse:
98 install-postrecurse:
99
100 install-headers-unix:: install-headers-postrecurse
101 install-headers-postrecurse: install-headers-recurse
102 install-headers-recurse: install-headers-prerecurse
103
104 install-headers-prerecurse:
105 install-headers-postrecurse:
106
107 check-unix:: check-postrecurse
108 check-postrecurse: check-recurse
109 check-recurse: check-prerecurse
110
111 check-prerecurse:
112 check-postrecurse:
113
114 Makefiles: Makefiles-postrecurse
115 Makefiles-postrecurse: Makefiles-recurse
116 Makefiles-recurse: Makefiles-prerecurse
117
118 Makefiles-prerecurse:
119 Makefiles-postrecurse:
120
121 generate-files-mac: generate-files-mac-postrecurse
122 generate-files-mac-postrecurse: generate-files-mac-recurse
123 generate-files-mac-recurse: generate-files-mac-prerecurse
124 generate-files-mac-prerecurse:
125
126 #
127 # end recursion rule support
128 ##############################
129
130 # Directory syntax:
131 #
132 # begin relative path
133 REL=
134 # this is magic... should only be used for preceding a program invocation
135 C=./
136 # "/" for UNIX, "\" for Windows; *sigh*
137 S=/
138
139 #
140 srcdir = @srcdir@
141 SRCTOP = @srcdir@/$(BUILDTOP)
142 top_srcdir = @top_srcdir@
143 VPATH = @srcdir@
144 CONFIG_RELTOPDIR = @CONFIG_RELTOPDIR@
145
146 FAKEDEST=$(BUILDTOP)/util/fakedest
147 FAKEPREFIX=$(FAKEDEST)/$(prefix)
148 FAKELIBDIR=$(FAKEPREFIX)/lib
149
150 # DEFS          set by configure
151 # DEFINES       set by local Makefile.in
152 # LOCALINCLUDES set by local Makefile.in
153 # CPPFLAGS      user override
154 # CFLAGS        user override but starts off set by configure
155 # PTHREAD_CFLAGS set by configure, not included in CFLAGS so that we
156 #               don't pull the pthreads library into shared libraries
157 ALL_CFLAGS = $(DEFS) $(DEFINES) $(KRB_INCLUDES) $(LOCALINCLUDES) \
158         -DKRB5_DEPRECATED=1 \
159         $(CPPFLAGS) $(CFLAGS) $(PTHREAD_CFLAGS)
160 ALL_CXXFLAGS = $(DEFS) $(DEFINES) $(KRB_INCLUDES) $(LOCALINCLUDES) \
161         -DKRB5_DEPRECATED=1 \
162         $(CPPFLAGS) $(CXXFLAGS) $(PTHREAD_CFLAGS)
163
164 CFLAGS = @CFLAGS@
165 CXXFLAGS = @CXXFLAGS@
166 PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
167 PTHREAD_LIBS = @PTHREAD_LIBS@
168 THREAD_LINKOPTS = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
169 CPPFLAGS = @CPPFLAGS@
170 DEFS = @DEFS@
171 CC = @CC@
172 CXX = @CXX@
173 LD = $(PURE) @LD@
174 DEPLIBS = @DEPLIBS@
175 KRB_INCLUDES = -I$(BUILDTOP)/include -I$(SRCTOP)/include
176 LDFLAGS = @LDFLAGS@
177 LD_UNRESOLVED_PREFIX = @LD_UNRESOLVED_PREFIX@
178 LD_SHLIBDIR_PREFIX = @LD_SHLIBDIR_PREFIX@
179 LDARGS = @LDARGS@
180 LIBS = @LIBS@
181 SRVLIBS = @SRVLIBS@
182 SRVDEPLIBS = @SRVDEPLIBS@
183 CLNTLIBS = @CLNTLIBS@
184 CLNTDEPLIBS = @CLNTDEPLIBS@
185
186 INSTALL=@INSTALL@
187 INSTALL_STRIP=
188 INSTALL_PROGRAM=@INSTALL_PROGRAM@ $(INSTALL_STRIP)
189 INSTALL_SCRIPT=@INSTALL_PROGRAM@
190 INSTALL_DATA=@INSTALL_DATA@
191 INSTALL_SHLIB=@INSTALL_SHLIB@
192 INSTALL_SETUID=$(INSTALL) $(INSTALL_STRIP) -m 4755 -o root
193 ## This is needed because autoconf will sometimes define @exec_prefix@ to be
194 ## ${prefix}.
195 prefix=@prefix@
196 INSTALL_PREFIX=$(prefix)
197 INSTALL_EXEC_PREFIX=@exec_prefix@
198 exec_prefix=@exec_prefix@
199 datarootdir=@datarootdir@
200 SHLIB_TAIL_COMP=@SHLIB_TAIL_COMP@
201
202 datadir = @datadir@
203 EXAMPLEDIR = $(datadir)/examples/krb5
204
205 KRB5MANROOT = @mandir@
206 ADMIN_BINDIR = @sbindir@
207 SERVER_BINDIR = @sbindir@
208 CLIENT_BINDIR =@bindir@
209 ADMIN_MANDIR = $(KRB5MANROOT)/man8
210 SERVER_MANDIR = $(KRB5MANROOT)/man8
211 CLIENT_MANDIR = $(KRB5MANROOT)/man1
212 FILE_MANDIR = $(KRB5MANROOT)/man5
213 KRB5_LIBDIR = @libdir@
214 KRB5_SHLIBDIR = @libdir@$(SHLIB_TAIL_COMP)
215 KRB5_INCDIR = @includedir@
216 MODULE_DIR = @libdir@/krb5/plugins
217 KRB5_DB_MODULE_DIR = $(MODULE_DIR)/kdb
218 KRB5_PA_MODULE_DIR = $(MODULE_DIR)/preauth
219 KRB5_LIBKRB5_MODULE_DIR = $(MODULE_DIR)/libkrb5
220 KRB5_INCSUBDIRS = \
221         $(KRB5_INCDIR)/krb5 \
222         $(KRB5_INCDIR)/gssapi \
223         $(KRB5_INCDIR)/kerberosIV \
224         $(KRB5_INCDIR)/gssrpc
225
226 #
227 # Macros used by the KADM5 (OV-based) unit test system.
228 # XXX check which of these are actually used!
229 #
230 TESTDIR         = $(BUILDTOP)/kadmin/testing
231 STESTDIR        = $(SRCTOP)/kadmin/testing
232 COMPARE_DUMP    = $(TESTDIR)/scripts/compare_dump.pl
233 FIX_CONF_FILES  = $(TESTDIR)/scripts/fixup-conf-files.pl
234 INITDB          = $(STESTDIR)/scripts/init_db
235 MAKE_KEYTAB     = $(TESTDIR)/scripts/make-host-keytab.pl
236 LOCAL_MAKE_KEYTAB= $(TESTDIR)/scripts/make-host-keytab.pl
237 RESTORE_FILES   = $(STESTDIR)/scripts/restore_files.sh
238 SAVE_FILES      = $(STESTDIR)/scripts/save_files.sh
239 ENV_SETUP       = $(TESTDIR)/scripts/env-setup.sh
240 CLNTTCL         = $(TESTDIR)/util/ovsec_kadm_clnt_tcl
241 SRVTCL          = $(TESTDIR)/util/ovsec_kadm_srv_tcl
242 # Dejagnu variables.
243 # We have to set the host with --host so that setup_xfail will work.
244 # If we don't set it, then the host type used is "native", which
245 # doesn't match "*-*-*".
246 host=@krb5_cv_host@
247 DEJAFLAGS       = $(DEJALFLAGS) $(CLFLAGS) --debug --srcdir $(srcdir) --host \
248                    $(host)
249 RUNTEST         = runtest $(DEJAFLAGS)
250
251 START_SERVERS   = $(STESTDIR)/scripts/start_servers $(TEST_SERVER) $(TEST_PATH)
252 START_SERVERS_LOCAL = $(STESTDIR)/scripts/start_servers_local
253
254 STOP_SERVERS    = $(STESTDIR)/scripts/stop_servers $(TEST_SERVER) $(TEST_PATH)
255 STOP_SERVERS_LOCAL = $(STESTDIR)/scripts/stop_servers_local
256 #
257 # End of macros for the KADM5 unit test system.
258 #
259
260 transform = @program_transform_name@
261
262 RM = rm -f
263 CP = cp
264 MV = mv -f
265 CHMOD=chmod
266 RANLIB = @RANLIB@
267 ARCHIVE = @ARCHIVE@
268 ARADD = @ARADD@
269 LN = @LN_S@
270 AWK = @AWK@
271 LEX = @LEX@
272 LEXLIB = @LEXLIB@
273 YACC = @YACC@
274 PERL = @PERL@
275 AUTOCONF = autoconf
276 AUTOCONFFLAGS =
277 AUTOHEADER = autoheader
278 AUTOHEADERFLAGS =
279 MOVEIFCHANGED = $(SRCTOP)/config/move-if-changed
280
281 HOST_TYPE = @HOST_TYPE@
282 SHEXT = @SHEXT@
283 STEXT=@STEXT@
284 VEXT=@VEXT@
285
286 TOPLIBD = $(BUILDTOP)/lib
287
288 OBJEXT = o
289 LIBEXT = a
290 EXEEXT =
291
292 #
293 # variables for libraries, for use in linking programs
294 # -- this may want to get broken out into a separate frag later
295 #
296 #
297 # Note: the following variables must be set in any Makefile.in that
298 # uses KRB5_BUILD_PROGRAM
299 #
300 # PROG_LIBPATH  list of dirs, in -Ldir form, to search for libraries at link
301 # PROG_RPATH    list of dirs, in dir1:dir2 form, for rpath purposes
302 #
303 # invocation is like:
304 # prog: foo.o bar.o $(KRB5_BASE_DEPLIBS)
305 #       $(CC_LINK) -o $@ foo.o bar.o $(KRB5_BASE_LIBS)
306
307
308 CC_LINK=@CC_LINK@
309 CXX_LINK=@CXX_LINK@
310
311 # prefix (with no spaces after) for rpath flag to cc
312 RPATH_FLAG=@RPATH_FLAG@
313
314 # this gets set by configure to either $(STLIBEXT) or $(SHLIBEXT),
315 # depending on whether we're building with shared libraries.
316 DEPLIBEXT=@DEPLIBEXT@
317
318 KADMCLNT_DEPLIB = $(TOPLIBD)/libkadm5clnt$(DEPLIBEXT)
319 KADMSRV_DEPLIB  = $(TOPLIBD)/libkadm5srv$(DEPLIBEXT)
320 KDB5_DEPLIB     = $(TOPLIBD)/libkdb5$(DEPLIBEXT)
321 GSSRPC_DEPLIB   = $(TOPLIBD)/libgssrpc$(DEPLIBEXT)
322 GSS_DEPLIB      = $(TOPLIBD)/libgssapi_krb5$(DEPLIBEXT)
323 KRB4_DEPLIB     = @KRB4_DEPLIB@         # $(TOPLIBD)/libkrb4$(DEPLIBEXT)
324 DES425_DEPLIB   = @DES425_DEPLIB@       # $(TOPLIBD)/libdes425$(DEPLIBEXT)
325 KRB5_DEPLIB     = $(TOPLIBD)/libkrb5$(DEPLIBEXT)
326 CRYPTO_DEPLIB   = $(TOPLIBD)/libk5crypto$(DEPLIBEXT)
327 COM_ERR_DEPLIB  = $(COM_ERR_DEPLIB-@COM_ERR_VERSION@)
328 COM_ERR_DEPLIB-sys = # empty
329 COM_ERR_DEPLIB-k5 = $(TOPLIBD)/libcom_err$(DEPLIBEXT)
330 SUPPORT_LIBNAME=krb5support
331 SUPPORT_DEPLIB  = $(TOPLIBD)/lib$(SUPPORT_LIBNAME)$(DEPLIBEXT)
332
333 # These are forced to use ".a" as an extension because they're never
334 # built shared.
335 SS_DEPLIB       = $(SS_DEPLIB-@SS_VERSION@)
336 SS_DEPLIB-k5    = $(TOPLIBD)/libss.a
337 SS_DEPLIB-sys   =
338 PTY_DEPLIB      = $(TOPLIBD)/libpty.a
339 APPUTILS_DEPLIB = $(TOPLIBD)/libapputils.a
340
341 KRB5_BASE_DEPLIBS       = $(KRB5_DEPLIB) $(CRYPTO_DEPLIB) $(COM_ERR_DEPLIB) $(SUPPORT_DEPLIB)
342 KRB4COMPAT_DEPLIBS      = $(KRB4_DEPLIB) $(DES425_DEPLIB) $(KRB5_BASE_DEPLIBS)
343 KDB5_DEPLIBS            = $(KDB5_DEPLIB)
344 GSS_DEPLIBS             = $(GSS_DEPLIB)
345 GSSRPC_DEPLIBS          = $(GSSRPC_DEPLIB) $(GSS_DEPLIBS)
346 KADM_COMM_DEPLIBS       = $(GSSRPC_DEPLIBS) $(KDB5_DEPLIBS) $(GSSRPC_DEPLIBS)
347 KADMSRV_DEPLIBS         = $(KADMSRV_DEPLIB) $(KDB5_DEPLIBS) $(KADM_COMM_DEPLIBS)
348 KADMCLNT_DEPLIBS        = $(KADMCLNT_DEPLIB) $(KADM_COMM_DEPLIBS)
349
350 # Header file dependencies we might override.
351 # See util/depfix.sed.
352 # Also see depend-verify-* in post.in, which wants to confirm that we're using
353 # the in-tree versions.
354 COM_ERR_VERSION = @COM_ERR_VERSION@
355 COM_ERR_DEPS    = $(COM_ERR_DEPS-@COM_ERR_VERSION@)
356 COM_ERR_DEPS-sys =
357 COM_ERR_DEPS-k5 = $(BUILDTOP)/include/com_err.h
358 SS_VERSION      = @SS_VERSION@
359 SS_DEPS         = $(SS_DEPS-@SS_VERSION@)
360 SS_DEPS-sys     =
361 SS_DEPS-k5      = $(BUILDTOP)/include/ss/ss.h $(BUILDTOP)/include/ss/ss_err.h
362
363 # Header file dependencies that might depend on whether krb4 support
364 # is compiled.
365
366 KRB_ERR_H_DEP   = @KRB_ERR_H_DEP@
367
368 # LIBS gets substituted in... e.g. -lnsl -lsocket
369
370 # GEN_LIB is -lgen if needed for regexp
371 GEN_LIB         = @GEN_LIB@
372
373 SS_LIB          = $(SS_LIB-@SS_VERSION@)
374 SS_LIB-sys      = @SS_LIB@
375 SS_LIB-k5       = $(TOPLIBD)/libss.a
376 KDB5_LIB        = -lkdb5
377
378 DL_LIB          = @DL_LIB@
379
380 KRB5_LIB                        = -lkrb5
381 K5CRYPTO_LIB                    = -lk5crypto
382 COM_ERR_LIB                     = -lcom_err
383 GSS_KRB5_LIB                    = -lgssapi_krb5
384 SUPPORT_LIB                     = -l$(SUPPORT_LIBNAME)
385
386 # KRB4_LIB is -lkrb4 if building --with-krb4
387 # needs fixing if ever used on Mac OS X!
388 KRB4_LIB        = @KRB4_LIB@
389
390 # DES425_LIB is -ldes425 if building --with-krb4
391 # needs fixing if ever used on Mac OS X!
392 DES425_LIB      = @DES425_LIB@
393
394 # HESIOD_LIBS is -lhesiod...
395 HESIOD_LIBS     = @HESIOD_LIBS@
396
397 KRB5_BASE_LIBS  = $(KRB5_LIB) $(K5CRYPTO_LIB) $(COM_ERR_LIB) $(SUPPORT_LIB) $(GEN_LIB) $(LIBS) $(DL_LIB)
398 KRB4COMPAT_LIBS = $(KRB4_LIB) $(DES425_LIB) $(KRB5_BASE_LIBS)
399 KDB5_LIBS       = $(KDB5_LIB) $(GSSRPC_LIBS)
400 GSS_LIBS        = $(GSS_KRB5_LIB)
401 # needs fixing if ever used on Mac OS X!
402 GSSRPC_LIBS     = -lgssrpc $(GSS_LIBS)
403 KADM_COMM_LIBS  = $(GSSRPC_LIBS)
404 # need fixing if ever used on Mac OS X!
405 KADMSRV_LIBS    = -lkadm5srv $(HESIOD_LIBS) $(KDB5_LIBS) $(KADM_COMM_LIBS)
406 KADMCLNT_LIBS   = -lkadm5clnt $(KADM_COMM_LIBS)
407
408 # need fixing if ever used on Mac OS X!
409 PTY_LIB         = -lpty
410
411 # libutil for NetBSD, et al. for openpty(), etc.
412 UTIL_LIB        = @UTIL_LIB@
413
414 # Misc stuff for linking server programs (and maybe some others,
415 # eventually) but which we don't want to install.
416 APPUTILS_LIB    = -lapputils
417
418 #
419 # some more stuff for --with-krb4
420 KRB4_LIBPATH    = @KRB4_LIBPATH@
421 KRB4_INCLUDES   = @KRB4_INCLUDES@
422
423 #
424 # variables for --with-tcl=
425 TCL_LIBS        = @TCL_LIBS@
426 TCL_LIBPATH     = @TCL_LIBPATH@
427 TCL_RPATH       = @TCL_RPATH@
428 TCL_MAYBE_RPATH = @TCL_MAYBE_RPATH@
429 TCL_INCLUDES    = @TCL_INCLUDES@
430
431 # error table rules
432 #
433 ### /* these are invoked as $(...) foo.et, which works, but could be better */
434 COMPILE_ET= $(COMPILE_ET-@COM_ERR_VERSION@)
435 COMPILE_ET-sys= compile_et
436 COMPILE_ET-k5= $(BUILDTOP)/util/et/compile_et -d $(SRCTOP)/util/et
437
438 .SUFFIXES:  .h .c .et .ct
439
440 # These versions cause both .c and .h files to be generated at once.
441 # But GNU make doesn't understand this, and parallel builds can trigger
442 # both of them at once, causing them to stomp on each other.  The versions
443 # below only update one of the files, so compile_et has to get run twice,
444 # but it won't break parallel builds.
445 #.et.h: ; $(COMPILE_ET) $<
446 #.et.c: ; $(COMPILE_ET) $<
447
448 .et.h:
449         $(RM) et-h-$*.et et-h-$*.c et-h-$*.h
450         $(CP) $< et-h-$*.et
451         $(COMPILE_ET) et-h-$*.et
452         $(MV) et-h-$*.h $*.h
453         $(RM) et-h-$*.et et-h-$*.c
454 .et.c:
455         $(RM) et-c-$*.et et-c-$*.c et-c-$*.h
456         $(CP) $< et-c-$*.et
457         $(COMPILE_ET) et-c-$*.et
458         $(MV) et-c-$*.c $*.c
459         $(RM) et-c-$*.et et-c-$*.h
460
461 # rule to make object files
462 #
463 .SUFFIXES: .cpp .c .o
464 .c.o:
465         $(CC) $(ALL_CFLAGS) -c $<
466 # Use .cpp because that's what autoconf uses in its test.
467 # If the compiler doesn't accept a .cpp suffix here, it wouldn't
468 # have accepted it when autoconf tested it.
469 .cpp.o:
470         $(CXX) $(ALL_CXXFLAGS) -c $<
471
472 # ss command table rules
473 #
474 MAKE_COMMANDS= $(MAKE_COMMANDS-@SS_VERSION@)
475 MAKE_COMMANDS-sys= mk_cmds
476 MAKE_COMMANDS-k5= $(BUILDTOP)/util/ss/mk_cmds
477
478 .ct.c:
479         $(MAKE_COMMANDS) $<
480
481 ## Parameters to be set by configure for use in lib.in:
482 ##
483 #
484 # These settings are for building shared libraries only.  Including
485 # libpriv.in will override with values appropriate for static
486 # libraries that we don't install.  Some values will depend on whether
487 # the platform supports major and minor version number extensions on
488 # shared libraries, hence the FOO_@@ settings.
489
490 LN_S=@LN_S@
491 AR=@AR@
492
493 # Set to "lib$(LIBBASE)$(STEXT) lib$(LIBBASE)$(SHEXT) lib$(LIBBASE)$(PFEXT)" or
494 # some subset thereof by configure; determines which types of libs get
495 # built.
496 LIBLIST=$(LIBLIST_@SHLIB_HAVE_MINOR_VERS@)
497 LIBLIST_yes=lib$(LIBBASE)$(SHLIBEXT) lib$(LIBBASE)$(SHLIBSEXT)
498 LIBLIST_no=lib$(LIBBASE)$(SHLIBEXT)
499
500 # Set by configure; list of library symlinks to make to $(TOPLIBD)
501 LIBLINKS=$(LIBLINKS_@SHLIB_HAVE_MINOR_VERS@)
502 LIBLINKS_yes=$(TOPLIBD)/lib$(LIBBASE)$(SHLIBEXT) $(TOPLIBD)/lib$(LIBBASE)$(SHLIBVEXT) $(TOPLIBD)/lib$(LIBBASE)$(SHLIBSEXT)
503 LIBLINKS_no=$(TOPLIBD)/lib$(LIBBASE)$(SHLIBEXT) $(TOPLIBD)/lib$(LIBBASE)$(SHLIBVEXT)
504
505 # Set by configure; list of install targets
506 LIBINSTLIST=$(LIBINSTLIST_@SHLIB_HAVE_MINOR_VERS@)
507 LIBINSTLIST_yes=install-shlib-soname
508 LIBINSTLIST_no=install-shared
509
510 # Some of these should really move to pre.in, since programs will need
511 # it too. (e.g. stuff that has dependencies on the libraries)
512
513 # usually .a
514 STLIBEXT_if_static=@STLIBEXT@
515 STLIBEXT=.a-nobuild
516
517 # usually .so.$(LIBMAJOR).$(LIBMINOR)
518 SHLIBVEXT=@SHLIBVEXT@
519
520 # usually .so.$(LIBMAJOR) (to allow for major-version compat)
521 SHLIBSEXT=@SHLIBSEXT@
522
523 # usually .so
524 SHLIBEXT=@SHLIBEXT@
525
526 # usually _p.a
527 PFLIBEXT=@PFLIBEXT@
528
529 #
530 DYNOBJEXT=@DYNOBJEXT@
531 MAKE_DYNOBJ_COMMAND=@MAKE_DYNOBJ_COMMAND@
532 DYNOBJ_EXPDEPS=@DYNOBJ_EXPDEPS@
533 DYNOBJ_EXPFLAGS=@DYNOBJ_EXPFLAGS@
534
535 # File with symbol names to be exported, both functions and data,
536 # currently not distinguished.
537 SHLIB_EXPORT_FILE=$(srcdir)/$(LIBPREFIX)$(LIBBASE).exports
538
539 # File that needs to be current for building the shared library,
540 # usually SHLIB_EXPORT_FILE, but not always, if we have to convert
541 # it to another, intermediate form for the linker.
542 SHLIB_EXPORT_FILE_DEP=@SHLIB_EXPORT_FILE_DEP@
543
544 # Command to run to build a shared library.
545 # In systems that require multiple commands, like AIX, it may need
546 # to change to rearrange where the various parameters fit in.
547 MAKE_SHLIB_COMMAND=@MAKE_SHLIB_COMMAND@
548
549 # flags for explicit libraries depending on this one,
550 # e.g. "-R$(SHLIB_RPATH) $(SHLIB_SHLIB_DIRFLAGS) $(SHLIB_EXPLIBS)"
551 SHLIB_EXPFLAGS=@SHLIB_EXPFLAGS@
552
553 ## Parameters to be set by configure for use in libobj.in:
554
555 # Set to "OBJS.ST OBJS.SH OBJS.PF" or some subset thereof by
556 # configure; determines which types of object files get built.
557 OBJLISTS=OBJS.SH
558
559 # Note that $(LIBSRCS) *cannot* contain any variable references, or
560 # the suffix substitution will break on some platforms!
561 SHLIBOBJS=$(STLIBOBJS:.o=@SHOBJEXT@)
562 PFLIBOBJS=$(STLIBOBJS:.o=@PFOBJEXT@)
563
564 # "$(CC) -G", "$(LD) -Bshareable", etc.
565 LDCOMBINE=@LDCOMBINE@
566
567 # "-h $@", "-h lib$(LIBNAME).$(LIBMAJOR)", etc.
568 SONAME=@SONAME@
569
570
571 #
572 # rules to make various types of object files
573 #
574 PICFLAGS=@PICFLAGS@
575 PROFFLAGS=@PROFFLAGS@
576
577 # platform-dependent temporary files that should get cleaned up
578 EXTRA_FILES=@EXTRA_FILES@
579
580 VALGRIND=
581 # Need absolute paths here because under kshd or ftpd we may run programs
582 # while in other directories.
583 VALGRIND_LOGDIR = `cd $(BUILDTOP)&&pwd`
584 VALGRIND1 = valgrind --tool=memcheck --log-file=$(VALGRIND_LOGDIR)/vg --trace-children=yes -v --leak-check=yes --suppressions=`cd $(SRCTOP)&&pwd`/util/valgrind-suppressions
585
586 ##
587 ## end of pre.in
588 ############################################################