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