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@
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)
41 else # vpath_build = yes
42 top_srcdir = $(abs_top_srcdir)
43 srcdir = $(top_srcdir)/$(subdir)
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.
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.
69 exec_prefix := @exec_prefix@
70 datarootdir := @datarootdir@
75 ifeq "$(findstring pgsql, $(datadir))" ""
76 ifeq "$(findstring postgres, $(datadir))" ""
77 override datadir := $(datadir)/postgresql
81 sysconfdir := @sysconfdir@
82 ifeq "$(findstring pgsql, $(sysconfdir))" ""
83 ifeq "$(findstring postgres, $(sysconfdir))" ""
84 override sysconfdir := $(sysconfdir)/postgresql
91 ifeq "$(findstring pgsql, $(pkglibdir))" ""
92 ifeq "$(findstring postgres, $(pkglibdir))" ""
93 override pkglibdir := $(pkglibdir)/postgresql
97 includedir := @includedir@
99 pkgincludedir = $(includedir)
100 ifeq "$(findstring pgsql, $(pkgincludedir))" ""
101 ifeq "$(findstring postgres, $(pkgincludedir))" ""
102 override pkgincludedir := $(pkgincludedir)/postgresql
109 ifeq "$(findstring pgsql, $(docdir))" ""
110 ifeq "$(findstring postgres, $(docdir))" ""
111 override docdir := $(docdir)/postgresql
117 localedir := @localedir@
121 # Extension makefiles should set PG_CONFIG, but older ones might not
123 PG_CONFIG = pg_config
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)
139 # These derived path variables aren't separately configurable.
141 includedir_server = $(pkgincludedir)/server
142 includedir_internal = $(pkgincludedir)/internal
143 pgxsdir = $(pkglibdir)/pgxs
146 ##########################################################################
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@
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 ##########################################################################
201 CPPFLAGS = @CPPFLAGS@
204 override CPPFLAGS := -I$(includedir_server) -I$(includedir_internal) $(CPPFLAGS)
206 override CPPFLAGS := -I$(top_srcdir)/src/include $(CPPFLAGS)
208 override CPPFLAGS := -I$(top_builddir)/src/include $(CPPFLAGS)
214 SUN_STUDIO_CC = @SUN_STUDIO_CC@
220 BISONFLAGS = @BISONFLAGS@ $(YFLAGS)
222 FLEXFLAGS = @FLEXFLAGS@ $(LFLAGS)
224 DTRACEFLAGS = @DTRACEFLAGS@
229 LDAP_LIBS_FE = @LDAP_LIBS_FE@
230 LDAP_LIBS_BE = @LDAP_LIBS_BE@
231 OSSP_UUID_LIBS = @OSSP_UUID_LIBS@
233 with_gnu_ld = @with_gnu_ld@
234 ld_R_works = @ld_R_works@
236 LDFLAGS_SL = @LDFLAGS_SL@
244 # quoted for pathname with spaces
246 perl_archlibexp = @perl_archlibexp@
247 perl_privlibexp = @perl_privlibexp@
248 perl_useshrplib = @perl_useshrplib@
249 perl_embed_ldflags = @perl_embed_ldflags@
256 MSGMERGE = @MSGMERGE@
259 XGETTEXT = @XGETTEXT@
264 PL_TESTDB = pl_regression
265 CONTRIB_TESTDB = contrib_regression
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
285 STRIP_STATIC_LIB = @STRIP_STATIC_LIB@
286 STRIP_SHARED_LIB = @STRIP_SHARED_LIB@
300 ifeq ($(enable_coverage),yes)
301 # ccache loses .gcno files
302 export CCACHE_DISABLE = 1
307 DEF_PGPORT = @default_port@
308 WANTED_LANGUAGES = @WANTED_LANGUAGES@
311 ##########################################################################
313 # Additional platform-specific settings
316 # Name of the "template"
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.
343 ifeq ($(enable_rpath), yes)
348 ##########################################################################
350 # Some variables needed to find some client interfaces
353 # some contribs assumes headers and libs are in the source tree...
354 libpq_srcdir = $(includedir)
355 libpq_builddir = $(libdir)
357 libpq_srcdir = $(top_srcdir)/src/interfaces/libpq
358 libpq_builddir = $(top_builddir)/src/interfaces/libpq
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
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)
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.
380 libpq_pgport = -L$(libdir) -lpgport $(libpq)
382 libpq_pgport = -L$(top_builddir)/src/port -lpgport $(libpq)
387 $(MAKE) -C $(libpq_builddir) all
390 $(MAKE) -C $(top_builddir)/src/port all
392 .PHONY: submake-libpq submake-libpgport
395 ##########################################################################
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)
415 ifneq ($(CUSTOM_CC),)
419 ifneq ($(CUSTOM_COPT),)
430 LDFLAGS += $(PROFILE)
434 ##########################################################################
436 # substitute implementations of C library routines (see src/port/)
440 LIBS := -lpgport $(LIBS)
441 # add location of libpgport.a to LDFLAGS
443 override LDFLAGS := -L$(libdir) $(LDFLAGS)
445 override LDFLAGS := -L$(top_builddir)/src/port $(LDFLAGS)
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
454 # Not really standard libc functions, used by the backend.
458 ##########################################################################
460 # Global targets and rules
468 ifeq ($(PORTNAME),win32)
469 # Build rules to add versioninfo resources to win32 binaries
470 WIN32RES += win32ver.o
471 ifeq ($(PGFILESHLIB),1)
476 ifneq (,$(PGAPPICON))
477 PGICOSTR=$(subst /,\/,IDI_ICON ICON \"$(top_builddir)/src/port/$(PGAPPICON).ico\")
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
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
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
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 \
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)
548 COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
555 # GCC allows us to create object and dependency file in one invocation.
557 @if test ! -d $(DEPDIR); then mkdir -p $(DEPDIR); fi
558 $(COMPILE.c) -o $@ $< -MMD -MP -MF $(DEPDIR)/$(*F).Po
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
568 clean distclean maintainer-clean: clean-deps
577 ##########################################################################
579 # Native language support
581 ifeq ($(enable_nls), yes)
582 ifneq (,$(wildcard $(srcdir)/nls.mk))
584 include $(top_srcdir)/src/nls-global.mk
590 ##########################################################################
594 # Explanation of involved files:
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
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)
617 $(if $^,$(LCOV) -d . -c -o $@ $(LCOVFLAGS))
619 %.c.gcov: %.gcda | lcov.info
620 $(GCOV) -b -f -p -o . $(GCOVFLAGS) $*.c >$*.c.gcov.out
624 clean distclean maintainer-clean: clean-coverage
626 .PHONY: clean-coverage
628 rm -f *.gcda *.gcno lcov.info *.gcov *.gcov.out
631 # User-callable target to reset counts between test runs
633 rm -f `find . -name '*.gcda' -print`
635 endif # enable_coverage