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
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 ##########################################################################
21 .PHONY: all install install-strip installdirs uninstall clean distclean maintainer-clean distprep check installcheck maintainer-check coverage
24 # make `all' the default target
27 # Delete target files if the command fails after it has
28 # started to update the file.
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)
42 else # vpath_build = yes
43 top_srcdir = $(abs_top_srcdir)
44 srcdir = $(top_srcdir)/$(subdir)
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.
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.
70 exec_prefix := @exec_prefix@
71 datarootdir := @datarootdir@
76 ifeq "$(findstring pgsql, $(datadir))" ""
77 ifeq "$(findstring postgres, $(datadir))" ""
78 override datadir := $(datadir)/postgresql
82 sysconfdir := @sysconfdir@
83 ifeq "$(findstring pgsql, $(sysconfdir))" ""
84 ifeq "$(findstring postgres, $(sysconfdir))" ""
85 override sysconfdir := $(sysconfdir)/postgresql
92 ifeq "$(findstring pgsql, $(pkglibdir))" ""
93 ifeq "$(findstring postgres, $(pkglibdir))" ""
94 override pkglibdir := $(pkglibdir)/postgresql
98 includedir := @includedir@
100 pkgincludedir = $(includedir)
101 ifeq "$(findstring pgsql, $(pkgincludedir))" ""
102 ifeq "$(findstring postgres, $(pkgincludedir))" ""
103 override pkgincludedir := $(pkgincludedir)/postgresql
110 ifeq "$(findstring pgsql, $(docdir))" ""
111 ifeq "$(findstring postgres, $(docdir))" ""
112 override docdir := $(docdir)/postgresql
118 localedir := @localedir@
122 # Extension makefiles should set PG_CONFIG, but older ones might not
124 PG_CONFIG = pg_config
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)
140 # These derived path variables aren't separately configurable.
142 includedir_server = $(pkgincludedir)/server
143 includedir_internal = $(pkgincludedir)/internal
144 pgxsdir = $(pkglibdir)/pgxs
147 ##########################################################################
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@
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 ##########################################################################
203 CPPFLAGS = @CPPFLAGS@
206 override CPPFLAGS := -I$(includedir_server) -I$(includedir_internal) $(CPPFLAGS)
208 override CPPFLAGS := -I$(top_srcdir)/src/include $(CPPFLAGS)
210 override CPPFLAGS := -I$(top_builddir)/src/include $(CPPFLAGS)
216 SUN_STUDIO_CC = @SUN_STUDIO_CC@
222 BISONFLAGS = @BISONFLAGS@ $(YFLAGS)
224 FLEXFLAGS = @FLEXFLAGS@ $(LFLAGS)
226 DTRACEFLAGS = @DTRACEFLAGS@
235 LDAP_LIBS_FE = @LDAP_LIBS_FE@
236 LDAP_LIBS_BE = @LDAP_LIBS_BE@
237 OSSP_UUID_LIBS = @OSSP_UUID_LIBS@
239 with_gnu_ld = @with_gnu_ld@
240 ld_R_works = @ld_R_works@
242 LDFLAGS_SL = @LDFLAGS_SL@
252 # quoted to protect pathname with spaces
255 PERL = $(missing) perl
257 perl_archlibexp = @perl_archlibexp@
258 perl_privlibexp = @perl_privlibexp@
259 perl_useshrplib = @perl_useshrplib@
260 perl_embed_ldflags = @perl_embed_ldflags@
267 MSGMERGE = @MSGMERGE@
270 XGETTEXT = @XGETTEXT@
275 PL_TESTDB = pl_regression
276 CONTRIB_TESTDB = contrib_regression
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
296 STRIP_STATIC_LIB = @STRIP_STATIC_LIB@
297 STRIP_SHARED_LIB = @STRIP_SHARED_LIB@
311 ifeq ($(enable_coverage),yes)
312 # ccache loses .gcno files
313 export CCACHE_DISABLE = 1
318 DEF_PGPORT = @default_port@
319 WANTED_LANGUAGES = @WANTED_LANGUAGES@
322 ##########################################################################
324 # Additional platform-specific settings
327 # Name of the "template"
330 build_os = @build_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.
356 ifeq ($(enable_rpath), yes)
361 ##########################################################################
363 # Some variables needed to find some client interfaces
366 # some contribs assumes headers and libs are in the source tree...
367 libpq_srcdir = $(includedir)
368 libpq_builddir = $(libdir)
370 libpq_srcdir = $(top_srcdir)/src/interfaces/libpq
371 libpq_builddir = $(top_builddir)/src/interfaces/libpq
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
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)
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.
393 libpq_pgport = -L$(libdir) -lpgport $(libpq)
395 libpq_pgport = -L$(top_builddir)/src/port -lpgport $(libpq)
400 $(MAKE) -C $(libpq_builddir) all
403 $(MAKE) -C $(top_builddir)/src/port all
405 .PHONY: submake-libpq submake-libpgport
408 ##########################################################################
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)
428 ifneq ($(CUSTOM_CC),)
432 ifneq ($(CUSTOM_COPT),)
443 LDFLAGS += $(PROFILE)
447 ##########################################################################
449 # substitute implementations of C library routines (see src/port/)
453 LIBS := -lpgport $(LIBS)
454 # add location of libpgport.a to LDFLAGS
456 override LDFLAGS := -L$(libdir) $(LDFLAGS)
458 override LDFLAGS := -L$(top_builddir)/src/port $(LDFLAGS)
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
467 # Not really standard libc functions, used by the backend.
471 ##########################################################################
473 # Global targets and rules
476 $(CPP) $(CPPFLAGS) -o $@ $<
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
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
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
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 \
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)
547 COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
554 # GCC allows us to create object and dependency file in one invocation.
556 @if test ! -d $(DEPDIR); then mkdir -p $(DEPDIR); fi
557 $(COMPILE.c) -o $@ $< -MMD -MP -MF $(DEPDIR)/$(*F).Po
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
567 clean distclean maintainer-clean: clean-deps
576 ##########################################################################
578 # Native language support
580 ifeq ($(enable_nls), yes)
581 ifneq (,$(wildcard $(srcdir)/nls.mk))
583 include $(top_srcdir)/src/nls-global.mk
589 ##########################################################################
593 # Explanation of involved files:
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
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)
616 $(if $^,$(LCOV) -d . -c -o $@ $(LCOVFLAGS))
618 %.c.gcov: %.gcda | lcov.info
619 $(GCOV) -b -f -p -o . $(GCOVFLAGS) $*.c >$*.c.gcov.out
623 clean distclean maintainer-clean: clean-coverage
625 .PHONY: clean-coverage
627 rm -f *.gcda *.gcno lcov.info *.gcov *.gcov.out
630 # User-callable target to reset counts between test runs
632 rm -f `find . -name '*.gcda' -print`
634 endif # enable_coverage