OSDN Git Service

Set up ar, dlltool, dllwrap, and windres for cross-compiling if necessary.
[pg-rex/syncrep.git] / src / Makefile.global.in
1 # -*-makefile-*-
2 # $PostgreSQL: pgsql/src/Makefile.global.in,v 1.248 2008/12/07 08:36:22 petere Exp $
3
4 #------------------------------------------------------------------------------
5 # All PostgreSQL makefiles include this file and use the variables it sets,
6 # which in turn are put here by the configure script. There is no need for
7 # users to edit this file -- if it turns out to be necessary then that's a
8 # bug.
9 #
10 # A makefile that includes this file needs to set the variable `subdir' to
11 # the relative path from the top to itself and `top_builddir' to the relative
12 # path from itself to the top before including this file. (The "top" is the
13 # parent directory of the directory this file is in.)
14 #------------------------------------------------------------------------------
15
16
17 ##########################################################################
18 #
19 # Meta configuration
20
21 .PHONY: all install install-strip installdirs uninstall clean distclean maintainer-clean distprep check installcheck maintainer-check coverage
22 .SILENT: installdirs
23
24 # make `all' the default target
25 all:
26
27 # Delete target files if the command fails after it has
28 # started to update the file.
29 .DELETE_ON_ERROR:
30
31 # PostgreSQL version number
32 VERSION = @PACKAGE_VERSION@
33
34 # Support for VPATH builds
35 vpath_build = @vpath_build@
36 abs_top_srcdir = @abs_top_srcdir@
37
38 ifneq ($(vpath_build),yes)
39 top_srcdir = $(top_builddir)
40 srcdir = .
41 else # vpath_build = yes
42 top_srcdir = $(abs_top_srcdir)
43 srcdir = $(top_srcdir)/$(subdir)
44 VPATH = $(srcdir)
45 endif
46
47 # Saved arguments from configure
48 configure_args = @configure_args@
49
50
51 ##########################################################################
52 #
53 # Installation directories
54 #
55 # These are set by the equivalent --xxxdir configure options.  We
56 # append "postgresql" to some of them, if the string does not already
57 # contain "pgsql" or "postgres", in order to avoid directory clutter.
58 #
59 # In a PGXS build, we cannot use the values inserted into Makefile.global
60 # by configure, since the installation tree may have been relocated.
61 # Instead get the path values from pg_config.
62
63 ifndef PGXS
64
65 # Note that prefix, exec_prefix, and datarootdir aren't defined in a PGXS build;
66 # makefiles may only use the derived variables such as bindir.
67
68 prefix := @prefix@
69 exec_prefix := @exec_prefix@
70 datarootdir := @datarootdir@
71
72 bindir := @bindir@
73
74 datadir := @datadir@
75 ifeq "$(findstring pgsql, $(datadir))" ""
76 ifeq "$(findstring postgres, $(datadir))" ""
77 override datadir := $(datadir)/postgresql
78 endif
79 endif
80
81 sysconfdir := @sysconfdir@
82 ifeq "$(findstring pgsql, $(sysconfdir))" ""
83 ifeq "$(findstring postgres, $(sysconfdir))" ""
84 override sysconfdir := $(sysconfdir)/postgresql
85 endif
86 endif
87
88 libdir := @libdir@
89
90 pkglibdir = $(libdir)
91 ifeq "$(findstring pgsql, $(pkglibdir))" ""
92 ifeq "$(findstring postgres, $(pkglibdir))" ""
93 override pkglibdir := $(pkglibdir)/postgresql
94 endif
95 endif
96
97 includedir := @includedir@
98
99 pkgincludedir = $(includedir)
100 ifeq "$(findstring pgsql, $(pkgincludedir))" ""
101 ifeq "$(findstring postgres, $(pkgincludedir))" ""
102 override pkgincludedir := $(pkgincludedir)/postgresql
103 endif
104 endif
105
106 mandir := @mandir@
107
108 docdir := @docdir@
109 ifeq "$(findstring pgsql, $(docdir))" ""
110 ifeq "$(findstring postgres, $(docdir))" ""
111 override docdir := $(docdir)/postgresql
112 endif
113 endif
114
115 htmldir := @htmldir@
116
117 localedir := @localedir@
118
119 else # PGXS case
120
121 # Extension makefiles should set PG_CONFIG, but older ones might not
122 ifndef PG_CONFIG
123 PG_CONFIG = pg_config
124 endif
125
126 bindir := $(shell $(PG_CONFIG) --bindir)
127 datadir := $(shell $(PG_CONFIG) --sharedir)
128 sysconfdir := $(shell $(PG_CONFIG) --sysconfdir)
129 libdir := $(shell $(PG_CONFIG) --libdir)
130 pkglibdir := $(shell $(PG_CONFIG) --pkglibdir)
131 includedir := $(shell $(PG_CONFIG) --includedir)
132 pkgincludedir := $(shell $(PG_CONFIG) --pkgincludedir)
133 mandir := $(shell $(PG_CONFIG) --mandir)
134 docdir := $(shell $(PG_CONFIG) --docdir)
135 localedir := $(shell $(PG_CONFIG) --localedir)
136
137 endif # PGXS
138
139 # These derived path variables aren't separately configurable.
140
141 includedir_server = $(pkgincludedir)/server
142 includedir_internal = $(pkgincludedir)/internal
143 pgxsdir = $(pkglibdir)/pgxs
144
145
146 ##########################################################################
147 #
148 # Features
149 #
150 # Records the choice of the various --enable-xxx and --with-xxx options.
151
152 with_perl       = @with_perl@
153 with_python     = @with_python@
154 with_tcl        = @with_tcl@
155 with_openssl    = @with_openssl@
156 with_ossp_uuid  = @with_ossp_uuid@
157 with_libxml     = @with_libxml@
158 with_libxslt    = @with_libxslt@
159 with_system_tzdata = @with_system_tzdata@
160 with_zlib       = @with_zlib@
161 enable_shared   = @enable_shared@
162 enable_rpath    = @enable_rpath@
163 enable_nls      = @enable_nls@
164 enable_debug    = @enable_debug@
165 enable_dtrace   = @enable_dtrace@
166 enable_coverage = @enable_coverage@
167 enable_thread_safety    = @enable_thread_safety@
168
169 python_includespec      = @python_includespec@
170 python_libdir           = @python_libdir@
171 python_libspec          = @python_libspec@
172 python_additional_libs  = @python_additional_libs@
173 python_configdir        = @python_configdir@
174 python_version          = @python_version@
175
176 krb_srvtab = @krb_srvtab@
177
178 TCLSH                   = @TCLSH@
179 TCL_LIB_FILE            = @TCL_LIB_FILE@
180 TCL_LIBS                = @TCL_LIBS@
181 TCL_LIB_SPEC            = @TCL_LIB_SPEC@
182 TCL_INCLUDE_SPEC        = @TCL_INCLUDE_SPEC@
183 TCL_SHARED_BUILD        = @TCL_SHARED_BUILD@
184 TCL_SHLIB_LD_LIBS       = @TCL_SHLIB_LD_LIBS@
185
186 PTHREAD_CFLAGS          = @PTHREAD_CFLAGS@
187 PTHREAD_LIBS            = @PTHREAD_LIBS@
188
189 have_docbook    = @have_docbook@
190 DOCBOOKSTYLE    = @DOCBOOKSTYLE@
191 COLLATEINDEX    = @COLLATEINDEX@
192 DOCBOOK2MAN     = @DOCBOOK2MAN@
193
194
195 ##########################################################################
196 #
197 # Programs and flags
198
199 # Compilers
200
201 CPP = @CPP@
202 CPPFLAGS = @CPPFLAGS@
203
204 ifdef PGXS
205 override CPPFLAGS := -I$(includedir_server) -I$(includedir_internal) $(CPPFLAGS)
206 else # not PGXS
207 override CPPFLAGS := -I$(top_srcdir)/src/include $(CPPFLAGS)
208 ifdef VPATH
209 override CPPFLAGS := -I$(top_builddir)/src/include $(CPPFLAGS)
210 endif
211 endif # not PGXS
212
213 CC = @CC@
214 GCC = @GCC@
215 SUN_STUDIO_CC = @SUN_STUDIO_CC@
216 CFLAGS = @CFLAGS@
217
218 # Kind-of compilers
219
220 BISON = @BISON@
221 BISONFLAGS = @BISONFLAGS@ $(YFLAGS)
222 FLEX = @FLEX@
223 FLEXFLAGS = @FLEXFLAGS@ $(LFLAGS)
224 DTRACE = @DTRACE@
225 DTRACEFLAGS = @DTRACEFLAGS@
226
227 # Linking
228
229 AR = @AR@
230 DLLTOOL = @DLLTOOL@
231 DLLWRAP = @DLLWRAP@
232 LIBS = @LIBS@
233 LDAP_LIBS_FE = @LDAP_LIBS_FE@
234 LDAP_LIBS_BE = @LDAP_LIBS_BE@
235 OSSP_UUID_LIBS = @OSSP_UUID_LIBS@
236 LD = @LD@
237 with_gnu_ld = @with_gnu_ld@
238 ld_R_works = @ld_R_works@
239 LDFLAGS = @LDFLAGS@
240 LDFLAGS_SL = @LDFLAGS_SL@
241 LDREL = -r
242 LDOUT = -o
243 RANLIB = @RANLIB@
244 WINDRES = @WINDRES@
245 X = @EXEEXT@
246
247 # Perl 
248
249 # quoted for pathname with spaces
250 PERL                    = "@PERL@"
251 perl_archlibexp         = @perl_archlibexp@
252 perl_privlibexp         = @perl_privlibexp@
253 perl_useshrplib         = @perl_useshrplib@
254 perl_embed_ldflags      = @perl_embed_ldflags@
255
256 # Miscellaneous
257
258 AWK     = @AWK@
259 LN_S    = @LN_S@
260 MSGFMT  = @MSGFMT@
261 MSGMERGE = @MSGMERGE@
262 PYTHON  = @PYTHON@
263 TAR     = @TAR@
264 XGETTEXT = @XGETTEXT@
265
266 GZIP    = gzip
267 BZIP2   = bzip2
268
269 PL_TESTDB = pl_regression
270 CONTRIB_TESTDB = contrib_regression
271
272 # Installation.
273
274 INSTALL = $(SHELL) $(top_srcdir)/config/install-sh -c
275
276 INSTALL_SCRIPT_MODE     = 755
277 INSTALL_DATA_MODE       = 644
278 INSTALL_PROGRAM = $(INSTALL_PROGRAM_ENV) $(INSTALL) $(INSTALL_STRIP_FLAG)
279 INSTALL_SCRIPT  = $(INSTALL) -m $(INSTALL_SCRIPT_MODE)
280 INSTALL_DATA    = $(INSTALL) -m $(INSTALL_DATA_MODE)
281 INSTALL_STLIB   = $(INSTALL_STLIB_ENV) $(INSTALL_DATA) $(INSTALL_STRIP_FLAG)
282 INSTALL_SHLIB   = $(INSTALL_SHLIB_ENV) $(INSTALL) $(INSTALL_SHLIB_OPTS) $(INSTALL_STRIP_FLAG)
283 # Override in Makefile.port if necessary
284 INSTALL_SHLIB_OPTS = -m 755
285
286 mkinstalldirs   = $(SHELL) $(top_srcdir)/config/mkinstalldirs
287 missing         = $(SHELL) $(top_srcdir)/config/missing
288
289 STRIP           = @STRIP@
290 STRIP_STATIC_LIB = @STRIP_STATIC_LIB@
291 STRIP_SHARED_LIB = @STRIP_SHARED_LIB@
292
293 # Documentation
294
295 JADE    = @JADE@
296 NSGMLS  = @NSGMLS@
297 SGMLSPL = @SGMLSPL@
298
299 # Code coverage
300
301 GCOV = @GCOV@
302 LCOV = @LCOV@
303 GENHTML = @GENHTML@
304
305 ifeq ($(enable_coverage),yes)
306 # ccache loses .gcno files
307 export CCACHE_DISABLE = 1
308 endif
309
310 # Feature settings
311
312 DEF_PGPORT = @default_port@
313 WANTED_LANGUAGES = @WANTED_LANGUAGES@
314
315
316 ##########################################################################
317 #
318 # Additional platform-specific settings
319 #
320
321 # Name of the "template"
322 PORTNAME= @PORTNAME@
323
324 host_tuple = @host@
325 host_os = @host_os@
326 host_cpu = @host_cpu@
327
328 # Make HAVE_IPV6 available for initdb script creation
329 HAVE_IPV6= @HAVE_IPV6@
330
331 # The HP-UX port makefile, for one, needs access to this symbol
332 HAVE_POSIX_SIGNALS= @HAVE_POSIX_SIGNALS@
333
334 # This is mainly for use on FreeBSD, where we have both a.out and elf
335 # systems now.  May be applicable to other systems to?
336 ELF_SYSTEM= @ELF_SYS@
337
338 # Backend stack size limit has to be hard-wired on Windows (it's in bytes)
339 WIN32_STACK_RLIMIT=4194304
340
341 # Pull in platform-specific magic
342 include $(top_builddir)/src/Makefile.port
343
344 # Set up rpath if enabled.  By default it will point to our libdir,
345 # but individual Makefiles can force other rpath paths if needed.
346 rpathdir = $(libdir)
347
348 ifeq ($(enable_rpath), yes)
349 LDFLAGS += $(rpath)
350 endif
351
352
353 ##########################################################################
354 #
355 # Some variables needed to find some client interfaces
356
357 ifdef PGXS
358 # some contribs assumes headers and libs are in the source tree...
359 libpq_srcdir = $(includedir)
360 libpq_builddir = $(libdir)
361 else
362 libpq_srcdir = $(top_srcdir)/src/interfaces/libpq
363 libpq_builddir = $(top_builddir)/src/interfaces/libpq
364 endif
365
366 # This macro is for use by libraries linking to libpq.  (Because libpgport
367 # isn't created with the same link flags as libpq, it can't be used.)
368 libpq = -L$(libpq_builddir) -lpq
369   
370 # If doing static linking, shared library dependency info isn't available,
371 # so add in the libraries that libpq depends on.
372 ifeq ($(enable_shared), no)
373 libpq += $(filter -lintl -lssl -lcrypto -lkrb5 -lcrypt, $(LIBS)) \
374         $(LDAP_LIBS_FE) $(PTHREAD_LIBS)
375 endif
376
377 # This macro is for use by client executables (not libraries) that use libpq.
378 # We force clients to pull symbols from the non-shared library libpgport 
379 # rather than pulling some libpgport symbols from libpq just because 
380 # libpq uses those functions too.  This makes applications less 
381 # dependent on changes in libpq's usage of pgport.  To do this we link to
382 # pgport before libpq.  This does cause duplicate -lpgport's to appear
383 # on client link lines.
384 ifdef PGXS
385 libpq_pgport = -L$(libdir) -lpgport $(libpq)
386 else
387 libpq_pgport = -L$(top_builddir)/src/port -lpgport $(libpq)
388 endif
389
390
391 submake-libpq:
392         $(MAKE) -C $(libpq_builddir) all
393
394 submake-libpgport:
395         $(MAKE) -C $(top_builddir)/src/port all
396
397 .PHONY: submake-libpq submake-libpgport
398
399
400 ##########################################################################
401 #
402 # Customization
403 #
404 # This includes your local customizations if Makefile.custom exists
405 # in the source directory.  This file doesn't exist in the original
406 # distribution so that it doesn't get overwritten when you upgrade.
407 #
408 # NOTE:  Makefile.custom is from the pre-Autoconf days of PostgreSQL.
409 # You are liable to shoot yourself in the foot if you use it without
410 # knowing exactly what you're doing.  The preferred (and more
411 # reliable) method is to communicate what you want to do to the
412 # configure script, and leave the makefiles alone.
413
414 -include $(top_srcdir)/src/Makefile.custom
415
416 ifneq ($(CUSTOM_INSTALL),)
417 INSTALL= $(CUSTOM_INSTALL)
418 endif
419
420 ifneq ($(CUSTOM_CC),)
421   CC= $(CUSTOM_CC)
422 endif
423
424 ifneq ($(CUSTOM_COPT),)
425   COPT= $(CUSTOM_COPT)
426 endif
427
428 ifdef COPT
429    CFLAGS += $(COPT)
430    LDFLAGS += $(COPT)
431 endif
432
433 ifdef PROFILE
434    CFLAGS += $(PROFILE)
435    LDFLAGS += $(PROFILE)
436 endif
437
438
439 ##########################################################################
440 #
441 # substitute implementations of C library routines (see src/port/)
442
443 LIBOBJS = @LIBOBJS@
444
445 LIBS := -lpgport $(LIBS)
446 # add location of libpgport.a to LDFLAGS
447 ifdef PGXS
448 override LDFLAGS := -L$(libdir) $(LDFLAGS)
449 else
450 override LDFLAGS := -L$(top_builddir)/src/port $(LDFLAGS)
451 endif
452
453 # to make ws2_32.lib the last library, and always link with shfolder,
454 # so SHGetFolderName isn't picked up from shell32.dll
455 ifeq ($(PORTNAME),win32)
456 LIBS += -lws2_32 -lshfolder
457 endif
458
459 # Not really standard libc functions, used by the backend.
460 TAS         = @TAS@
461
462
463 ##########################################################################
464 #
465 # Global targets and rules
466
467 %.gz: %
468         $(GZIP) -f --best $<
469
470 %.bz2: %
471         $(BZIP2) -f $<
472
473 ifndef PGXS
474
475 # Remake Makefile.global from Makefile.global.in if the latter
476 # changed. In order to trigger this rule, the including file must
477 # write `include $(top_builddir)/src/Makefile.global', not some
478 # shortcut thereof.
479 $(top_builddir)/src/Makefile.global: $(top_srcdir)/src/Makefile.global.in $(top_builddir)/config.status
480         cd $(top_builddir) && ./config.status src/Makefile.global
481
482 # Remake pg_config.h from pg_config.h.in if the latter changed.
483 # config.status will not change the timestamp on pg_config.h if it
484 # doesn't change, so as to avoid recompiling the entire tree
485 # unnecessarily. Therefore we make config.status update a timestamp file
486 # stamp-h everytime it runs, so that we don't trigger this rule everytime.
487 # (We do trigger the null rule for stamp-h to pg_config.h everytime; so it's
488 # important for that rule to be null!)
489 #
490 # Of course you need to turn on dependency tracking to get any
491 # dependencies on pg_config.h.
492 $(top_builddir)/src/include/pg_config.h: $(top_builddir)/src/include/stamp-h
493
494 $(top_builddir)/src/include/stamp-h: $(top_srcdir)/src/include/pg_config.h.in $(top_builddir)/config.status
495         cd $(top_builddir) && ./config.status src/include/pg_config.h
496
497 # Also remake ecpg_config.h from ecpg_config.h.in if the latter changed. Values in it can
498 # only change if pg_config.h has changed, so include this file to its dependencies.
499 $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h: $(top_builddir)/src/include/pg_config.h $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h.in $(top_builddir)/config.status
500         cd $(top_builddir) && ./config.status src/interfaces/ecpg/include/ecpg_config.h
501
502 # When configure changes, rerun configure with the same options as
503 # last time. To change configure, you need to run autoconf manually.
504 $(top_builddir)/config.status: $(top_srcdir)/configure
505         cd $(top_builddir) && ./config.status --recheck
506
507 endif # not PGXS
508
509
510 install-strip:
511         @$(MAKE) INSTALL_PROGRAM_ENV="STRIPPROG='$(STRIP)'" \
512             INSTALL_STLIB_ENV="STRIPPROG='$(STRIP_STATIC_LIB)'" \
513             INSTALL_SHLIB_ENV="STRIPPROG='$(STRIP_SHARED_LIB)'" \
514             INSTALL_STRIP_FLAG=-s \
515             install
516
517
518 ##########################################################################
519 #
520 # Automatic dependency generation
521 # -------------------------------
522 # When we configure with --enable-depend then we override the default
523 # compilation rule with the magic below. While or after creating the
524 # actual output file we also create a dependency list for the .c file.
525 # Next time we invoke make we will have top-notch information about
526 # whether this file needs to be updated. The dependency files are kept
527 # in the .deps subdirectory of each directory.
528
529 autodepend = @autodepend@
530
531 ifeq ($(autodepend), yes)
532
533 ifndef COMPILE.c
534 COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
535 endif
536
537 DEPDIR = .deps
538
539 ifeq ($(GCC), yes)
540
541 # GCC allows us to create object and dependency file in one invocation.
542 %.o : %.c
543         @if test ! -d $(DEPDIR); then mkdir -p $(DEPDIR); fi
544         $(COMPILE.c) -o $@ $< -MMD -MP -MF $(DEPDIR)/$(*F).Po
545
546 endif # GCC
547
548 # Include all the dependency files generated for the current
549 # directory. List /dev/null as dummy because if the wildcard expands
550 # to nothing then make would complain.
551 -include $(wildcard $(DEPDIR)/*.Po) /dev/null
552
553 # hook for clean-up
554 clean distclean maintainer-clean: clean-deps
555
556 .PHONY: clean-deps
557 clean-deps:
558         @rm -rf $(DEPDIR)
559
560 endif # autodepend
561
562
563 ##########################################################################
564 #
565 # Native language support
566
567 ifeq ($(enable_nls), yes)
568 ifneq (,$(wildcard $(srcdir)/nls.mk))
569
570 include $(top_srcdir)/src/nls-global.mk
571
572 endif # nls.mk
573 endif # enable_nls
574
575
576 ##########################################################################
577 #
578 # Coverage
579
580 # Explanation of involved files:
581 #   foo.c       source file
582 #   foo.o       object file
583 #   foo.gcno    gcov graph (a.k.a. "notes") file, created at compile time
584 #               (by gcc -ftest-coverage)
585 #   foo.gcda    gcov data file, created when the program is run (for
586 #               programs compiled with gcc -fprofile-arcs)
587 #   foo.c.gcov  gcov output file with coverage information, created by
588 #               gcov from foo.gcda (by "make coverage")
589 #   foo.c.gcov.out  stdout captured when foo.c.gcov is created, mildly
590 #               interesting
591 #   lcov.info   lcov tracefile, built from gcda files in one directory,
592 #               later collected by "make coverage-html"
593
594 ifeq ($(enable_coverage), yes)
595
596 # There is a strange interaction between lcov and existing .gcov
597 # output files.  Hence the rm command and the ordering dependency.
598
599 gcda_files := $(wildcard *.gcda)
600
601 lcov.info: $(gcda_files)
602         rm -f *.gcov
603         $(if $^,$(LCOV) -d . -c -o $@ $(LCOVFLAGS))
604
605 %.c.gcov: %.gcda | lcov.info
606         $(GCOV) -b -f -p -o . $(GCOVFLAGS) $*.c >$*.c.gcov.out
607
608
609 # hook for clean-up
610 clean distclean maintainer-clean: clean-coverage
611
612 .PHONY: clean-coverage
613 clean-coverage:
614         rm -f *.gcda *.gcno lcov.info *.gcov *.gcov.out
615
616
617 # User-callable target to reset counts between test runs
618 coverage-clean:
619         rm -f `find . -name '*.gcda' -print`
620
621 endif # enable_coverage