Fix oversight in previous error-reporting patch; mustn't pfree path string
[PostgreSQL.git] / src / Makefile.global.in
blob9f5a3787ab8af2e0ea8bd7a2a02341528288fda9
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@
34 # Support for VPATH builds
35 vpath_build = @vpath_build@
36 abs_top_srcdir = @abs_top_srcdir@
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
47 # Saved arguments from configure
48 configure_args = @configure_args@
51 ##########################################################################
53 # Installation directories
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.
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.
63 ifndef PGXS
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.
68 prefix := @prefix@
69 exec_prefix := @exec_prefix@
70 datarootdir := @datarootdir@
72 bindir := @bindir@
74 datadir := @datadir@
75 ifeq "$(findstring pgsql, $(datadir))" ""
76 ifeq "$(findstring postgres, $(datadir))" ""
77 override datadir := $(datadir)/postgresql
78 endif
79 endif
81 sysconfdir := @sysconfdir@
82 ifeq "$(findstring pgsql, $(sysconfdir))" ""
83 ifeq "$(findstring postgres, $(sysconfdir))" ""
84 override sysconfdir := $(sysconfdir)/postgresql
85 endif
86 endif
88 libdir := @libdir@
90 pkglibdir = $(libdir)
91 ifeq "$(findstring pgsql, $(pkglibdir))" ""
92 ifeq "$(findstring postgres, $(pkglibdir))" ""
93 override pkglibdir := $(pkglibdir)/postgresql
94 endif
95 endif
97 includedir := @includedir@
99 pkgincludedir = $(includedir)
100 ifeq "$(findstring pgsql, $(pkgincludedir))" ""
101 ifeq "$(findstring postgres, $(pkgincludedir))" ""
102 override pkgincludedir := $(pkgincludedir)/postgresql
103 endif
104 endif
106 mandir := @mandir@
108 docdir := @docdir@
109 ifeq "$(findstring pgsql, $(docdir))" ""
110 ifeq "$(findstring postgres, $(docdir))" ""
111 override docdir := $(docdir)/postgresql
112 endif
113 endif
115 htmldir := @htmldir@
117 localedir := @localedir@
119 else # PGXS case
121 # Extension makefiles should set PG_CONFIG, but older ones might not
122 ifndef PG_CONFIG
123 PG_CONFIG = pg_config
124 endif
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)
137 endif # PGXS
139 # These derived path variables aren't separately configurable.
141 includedir_server = $(pkgincludedir)/server
142 includedir_internal = $(pkgincludedir)/internal
143 pgxsdir = $(pkglibdir)/pgxs
146 ##########################################################################
148 # Features
150 # Records the choice of the various --enable-xxx and --with-xxx options.
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@
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@
176 krb_srvtab = @krb_srvtab@
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@
186 PTHREAD_CFLAGS          = @PTHREAD_CFLAGS@
187 PTHREAD_LIBS            = @PTHREAD_LIBS@
189 have_docbook    = @have_docbook@
190 DOCBOOKSTYLE    = @DOCBOOKSTYLE@
191 COLLATEINDEX    = @COLLATEINDEX@
194 ##########################################################################
196 # Programs and flags
198 # Compilers
200 CPP = @CPP@
201 CPPFLAGS = @CPPFLAGS@
203 ifdef PGXS
204 override CPPFLAGS := -I$(includedir_server) -I$(includedir_internal) $(CPPFLAGS)
205 else # not PGXS
206 override CPPFLAGS := -I$(top_srcdir)/src/include $(CPPFLAGS)
207 ifdef VPATH
208 override CPPFLAGS := -I$(top_builddir)/src/include $(CPPFLAGS)
209 endif
210 endif # not PGXS
212 CC = @CC@
213 GCC = @GCC@
214 SUN_STUDIO_CC = @SUN_STUDIO_CC@
215 CFLAGS = @CFLAGS@
217 # Kind-of compilers
219 BISON = @BISON@
220 BISONFLAGS = @BISONFLAGS@ $(YFLAGS)
221 FLEX = @FLEX@
222 FLEXFLAGS = @FLEXFLAGS@ $(LFLAGS)
223 DTRACE = @DTRACE@
224 DTRACEFLAGS = @DTRACEFLAGS@
226 # Linking
228 LIBS = @LIBS@
229 LDAP_LIBS_FE = @LDAP_LIBS_FE@
230 LDAP_LIBS_BE = @LDAP_LIBS_BE@
231 OSSP_UUID_LIBS = @OSSP_UUID_LIBS@
232 LD = @LD@
233 with_gnu_ld = @with_gnu_ld@
234 ld_R_works = @ld_R_works@
235 LDFLAGS = @LDFLAGS@
236 LDFLAGS_SL = @LDFLAGS_SL@
237 LDREL = -r
238 LDOUT = -o
239 RANLIB = @RANLIB@
240 X = @EXEEXT@
242 # Perl 
244 # quoted for pathname with spaces
245 PERL                    = "@PERL@"
246 perl_archlibexp         = @perl_archlibexp@
247 perl_privlibexp         = @perl_privlibexp@
248 perl_useshrplib         = @perl_useshrplib@
249 perl_embed_ldflags      = @perl_embed_ldflags@
251 # Miscellaneous
253 AWK     = @AWK@
254 LN_S    = @LN_S@
255 MSGFMT  = @MSGFMT@
256 MSGMERGE = @MSGMERGE@
257 PYTHON  = @PYTHON@
258 TAR     = @TAR@
259 XGETTEXT = @XGETTEXT@
261 GZIP    = gzip
262 BZIP2   = bzip2
264 PL_TESTDB = pl_regression
265 CONTRIB_TESTDB = contrib_regression
267 # Installation.
269 INSTALL = $(SHELL) $(top_srcdir)/config/install-sh -c
271 INSTALL_SCRIPT_MODE     = 755
272 INSTALL_DATA_MODE       = 644
273 INSTALL_PROGRAM = $(INSTALL_PROGRAM_ENV) $(INSTALL) $(INSTALL_STRIP_FLAG)
274 INSTALL_SCRIPT  = $(INSTALL) -m $(INSTALL_SCRIPT_MODE)
275 INSTALL_DATA    = $(INSTALL) -m $(INSTALL_DATA_MODE)
276 INSTALL_STLIB   = $(INSTALL_STLIB_ENV) $(INSTALL_DATA) $(INSTALL_STRIP_FLAG)
277 INSTALL_SHLIB   = $(INSTALL_SHLIB_ENV) $(INSTALL) $(INSTALL_SHLIB_OPTS) $(INSTALL_STRIP_FLAG)
278 # Override in Makefile.port if necessary
279 INSTALL_SHLIB_OPTS = -m 755
281 mkinstalldirs   = $(SHELL) $(top_srcdir)/config/mkinstalldirs
282 missing         = $(SHELL) $(top_srcdir)/config/missing
284 STRIP           = @STRIP@
285 STRIP_STATIC_LIB = @STRIP_STATIC_LIB@
286 STRIP_SHARED_LIB = @STRIP_SHARED_LIB@
288 # Documentation
290 JADE    = @JADE@
291 NSGMLS  = @NSGMLS@
292 SGMLSPL = @SGMLSPL@
294 # Code coverage
296 GCOV = @GCOV@
297 LCOV = @LCOV@
298 GENHTML = @GENHTML@
300 ifeq ($(enable_coverage),yes)
301 # ccache loses .gcno files
302 export CCACHE_DISABLE = 1
303 endif
305 # Feature settings
307 DEF_PGPORT = @default_port@
308 WANTED_LANGUAGES = @WANTED_LANGUAGES@
311 ##########################################################################
313 # Additional platform-specific settings
316 # Name of the "template"
317 PORTNAME= @PORTNAME@
319 host_tuple = @host@
320 host_os = @host_os@
321 host_cpu = @host_cpu@
323 # Make HAVE_IPV6 available for initdb script creation
324 HAVE_IPV6= @HAVE_IPV6@
326 # The HP-UX port makefile, for one, needs access to this symbol
327 HAVE_POSIX_SIGNALS= @HAVE_POSIX_SIGNALS@
329 # This is mainly for use on FreeBSD, where we have both a.out and elf
330 # systems now.  May be applicable to other systems to?
331 ELF_SYSTEM= @ELF_SYS@
333 # Backend stack size limit has to be hard-wired on Windows (it's in bytes)
334 WIN32_STACK_RLIMIT=4194304
336 # Pull in platform-specific magic
337 include $(top_builddir)/src/Makefile.port
339 # Set up rpath if enabled.  By default it will point to our libdir,
340 # but individual Makefiles can force other rpath paths if needed.
341 rpathdir = $(libdir)
343 ifeq ($(enable_rpath), yes)
344 LDFLAGS += $(rpath)
345 endif
348 ##########################################################################
350 # Some variables needed to find some client interfaces
352 ifdef PGXS
353 # some contribs assumes headers and libs are in the source tree...
354 libpq_srcdir = $(includedir)
355 libpq_builddir = $(libdir)
356 else
357 libpq_srcdir = $(top_srcdir)/src/interfaces/libpq
358 libpq_builddir = $(top_builddir)/src/interfaces/libpq
359 endif
361 # This macro is for use by libraries linking to libpq.  (Because libpgport
362 # isn't created with the same link flags as libpq, it can't be used.)
363 libpq = -L$(libpq_builddir) -lpq
364   
365 # If doing static linking, shared library dependency info isn't available,
366 # so add in the libraries that libpq depends on.
367 ifeq ($(enable_shared), no)
368 libpq += $(filter -lintl -lssl -lcrypto -lkrb5 -lcrypt, $(LIBS)) \
369         $(LDAP_LIBS_FE) $(PTHREAD_LIBS)
370 endif
372 # This macro is for use by client executables (not libraries) that use libpq.
373 # We force clients to pull symbols from the non-shared library libpgport 
374 # rather than pulling some libpgport symbols from libpq just because 
375 # libpq uses those functions too.  This makes applications less 
376 # dependent on changes in libpq's usage of pgport.  To do this we link to
377 # pgport before libpq.  This does cause duplicate -lpgport's to appear
378 # on client link lines.
379 ifdef PGXS
380 libpq_pgport = -L$(libdir) -lpgport $(libpq)
381 else
382 libpq_pgport = -L$(top_builddir)/src/port -lpgport $(libpq)
383 endif
386 submake-libpq:
387         $(MAKE) -C $(libpq_builddir) all
389 submake-libpgport:
390         $(MAKE) -C $(top_builddir)/src/port all
392 .PHONY: submake-libpq submake-libpgport
395 ##########################################################################
397 # Customization
399 # This includes your local customizations if Makefile.custom exists
400 # in the source directory.  This file doesn't exist in the original
401 # distribution so that it doesn't get overwritten when you upgrade.
403 # NOTE:  Makefile.custom is from the pre-Autoconf days of PostgreSQL.
404 # You are liable to shoot yourself in the foot if you use it without
405 # knowing exactly what you're doing.  The preferred (and more
406 # reliable) method is to communicate what you want to do to the
407 # configure script, and leave the makefiles alone.
409 -include $(top_srcdir)/src/Makefile.custom
411 ifneq ($(CUSTOM_INSTALL),)
412 INSTALL= $(CUSTOM_INSTALL)
413 endif
415 ifneq ($(CUSTOM_CC),)
416   CC= $(CUSTOM_CC)
417 endif
419 ifneq ($(CUSTOM_COPT),)
420   COPT= $(CUSTOM_COPT)
421 endif
423 ifdef COPT
424    CFLAGS += $(COPT)
425    LDFLAGS += $(COPT)
426 endif
428 ifdef PROFILE
429    CFLAGS += $(PROFILE)
430    LDFLAGS += $(PROFILE)
431 endif
434 ##########################################################################
436 # substitute implementations of C library routines (see src/port/)
438 LIBOBJS = @LIBOBJS@
440 LIBS := -lpgport $(LIBS)
441 # add location of libpgport.a to LDFLAGS
442 ifdef PGXS
443 override LDFLAGS := -L$(libdir) $(LDFLAGS)
444 else
445 override LDFLAGS := -L$(top_builddir)/src/port $(LDFLAGS)
446 endif
448 # to make ws2_32.lib the last library, and always link with shfolder,
449 # so SHGetFolderName isn't picked up from shell32.dll
450 ifeq ($(PORTNAME),win32)
451 LIBS += -lws2_32 -lshfolder
452 endif
454 # Not really standard libc functions, used by the backend.
455 TAS         = @TAS@
458 ##########################################################################
460 # Global targets and rules
462 %.gz: %
463         $(GZIP) -f --best $<
465 %.bz2: %
466         $(BZIP2) -f $<
468 ifeq ($(PORTNAME),win32)
469 # Build rules to add versioninfo resources to win32 binaries
470 WIN32RES += win32ver.o
471 ifeq ($(PGFILESHLIB),1)
472 PGFTYPE=VFT_DLL
473 else
474 PGFTYPE=VFT_APP
475 endif
476 ifneq (,$(PGAPPICON))
477 PGICOSTR=$(subst /,\/,IDI_ICON ICON \"$(top_builddir)/src/port/$(PGAPPICON).ico\")
478 endif
479 win32ver.rc: $(top_builddir)/src/port/win32ver.rc
480         sed -e 's;FILEDESC;$(PGFILEDESC);' -e 's;VFT_APP;$(PGFTYPE);' -e 's;_ICO_;$(PGICOSTR);' -e 's;\(VERSION.*\),0 *$$;\1,'`date '+%y%j' | sed 's/^0*//'`';' $(top_builddir)/src/port/win32ver.rc > win32ver.rc
481 win32ver.o: $(top_builddir)/src/port/win32ver.rc
482         sed -e 's;FILEDESC;$(PGFILEDESC);' -e 's;VFT_APP;$(PGFTYPE);' -e 's;_ICO_;$(PGICOSTR);' -e 's;\(VERSION.*\),0 *$$;\1,'`date '+%y%j' | sed 's/^0*//'`';' $(top_builddir)/src/port/win32ver.rc > win32ver.rc
483         windres -i win32ver.rc -o win32ver.o --include-dir=$(top_builddir)/src/include
484         rm -f win32ver.rc
485 endif
487 ifndef PGXS
489 # Remake Makefile.global from Makefile.global.in if the latter
490 # changed. In order to trigger this rule, the including file must
491 # write `include $(top_builddir)/src/Makefile.global', not some
492 # shortcut thereof.
493 $(top_builddir)/src/Makefile.global: $(top_srcdir)/src/Makefile.global.in $(top_builddir)/config.status
494         cd $(top_builddir) && ./config.status src/Makefile.global
496 # Remake pg_config.h from pg_config.h.in if the latter changed.
497 # config.status will not change the timestamp on pg_config.h if it
498 # doesn't change, so as to avoid recompiling the entire tree
499 # unnecessarily. Therefore we make config.status update a timestamp file
500 # stamp-h everytime it runs, so that we don't trigger this rule everytime.
501 # (We do trigger the null rule for stamp-h to pg_config.h everytime; so it's
502 # important for that rule to be null!)
504 # Of course you need to turn on dependency tracking to get any
505 # dependencies on pg_config.h.
506 $(top_builddir)/src/include/pg_config.h: $(top_builddir)/src/include/stamp-h
508 $(top_builddir)/src/include/stamp-h: $(top_srcdir)/src/include/pg_config.h.in $(top_builddir)/config.status
509         cd $(top_builddir) && ./config.status src/include/pg_config.h
511 # Also remake ecpg_config.h from ecpg_config.h.in if the latter changed. Values in it can
512 # only change if pg_config.h has changed, so include this file to its dependencies.
513 $(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
514         cd $(top_builddir) && ./config.status src/interfaces/ecpg/include/ecpg_config.h
516 # When configure changes, rerun configure with the same options as
517 # last time. To change configure, you need to run autoconf manually.
518 $(top_builddir)/config.status: $(top_srcdir)/configure
519         cd $(top_builddir) && ./config.status --recheck
521 endif # not PGXS
524 install-strip:
525         @$(MAKE) INSTALL_PROGRAM_ENV="STRIPPROG='$(STRIP)'" \
526             INSTALL_STLIB_ENV="STRIPPROG='$(STRIP_STATIC_LIB)'" \
527             INSTALL_SHLIB_ENV="STRIPPROG='$(STRIP_SHARED_LIB)'" \
528             INSTALL_STRIP_FLAG=-s \
529             install
532 ##########################################################################
534 # Automatic dependency generation
535 # -------------------------------
536 # When we configure with --enable-depend then we override the default
537 # compilation rule with the magic below. While or after creating the
538 # actual output file we also create a dependency list for the .c file.
539 # Next time we invoke make we will have top-notch information about
540 # whether this file needs to be updated. The dependency files are kept
541 # in the .deps subdirectory of each directory.
543 autodepend = @autodepend@
545 ifeq ($(autodepend), yes)
547 ifndef COMPILE.c
548 COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
549 endif
551 DEPDIR = .deps
553 ifeq ($(GCC), yes)
555 # GCC allows us to create object and dependency file in one invocation.
556 %.o : %.c
557         @if test ! -d $(DEPDIR); then mkdir -p $(DEPDIR); fi
558         $(COMPILE.c) -o $@ $< -MMD -MP -MF $(DEPDIR)/$(*F).Po
560 endif # GCC
562 # Include all the dependency files generated for the current
563 # directory. List /dev/null as dummy because if the wildcard expands
564 # to nothing then make would complain.
565 -include $(wildcard $(DEPDIR)/*.Po) /dev/null
567 # hook for clean-up
568 clean distclean maintainer-clean: clean-deps
570 .PHONY: clean-deps
571 clean-deps:
572         @rm -rf $(DEPDIR)
574 endif # autodepend
577 ##########################################################################
579 # Native language support
581 ifeq ($(enable_nls), yes)
582 ifneq (,$(wildcard $(srcdir)/nls.mk))
584 include $(top_srcdir)/src/nls-global.mk
586 endif # nls.mk
587 endif # enable_nls
590 ##########################################################################
592 # Coverage
594 # Explanation of involved files:
595 #   foo.c       source file
596 #   foo.o       object file
597 #   foo.gcno    gcov graph (a.k.a. "notes") file, created at compile time
598 #               (by gcc -ftest-coverage)
599 #   foo.gcda    gcov data file, created when the program is run (for
600 #               programs compiled with gcc -fprofile-arcs)
601 #   foo.c.gcov  gcov output file with coverage information, created by
602 #               gcov from foo.gcda (by "make coverage")
603 #   foo.c.gcov.out  stdout captured when foo.c.gcov is created, mildly
604 #               interesting
605 #   lcov.info   lcov tracefile, built from gcda files in one directory,
606 #               later collected by "make coverage-html"
608 ifeq ($(enable_coverage), yes)
610 # There is a strange interaction between lcov and existing .gcov
611 # output files.  Hence the rm command and the ordering dependency.
613 gcda_files := $(wildcard *.gcda)
615 lcov.info: $(gcda_files)
616         rm -f *.gcov
617         $(if $^,$(LCOV) -d . -c -o $@ $(LCOVFLAGS))
619 %.c.gcov: %.gcda | lcov.info
620         $(GCOV) -b -f -p -o . $(GCOVFLAGS) $*.c >$*.c.gcov.out
623 # hook for clean-up
624 clean distclean maintainer-clean: clean-coverage
626 .PHONY: clean-coverage
627 clean-coverage:
628         rm -f *.gcda *.gcno lcov.info *.gcov *.gcov.out
631 # User-callable target to reset counts between test runs
632 coverage-clean:
633         rm -f `find . -name '*.gcda' -print`
635 endif # enable_coverage