]> granicus.if.org Git - postgresql/blob - src/Makefile.global.in
Switch user ID to the object owner when populating a materialized view.
[postgresql] / src / Makefile.global.in
1 # -*-makefile-*-
2 # src/Makefile.global.in
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 standard_targets = all install installdirs uninstall distprep clean distclean maintainer-clean coverage check installcheck maintainer-check init-po update-po
22 # these targets should recurse even into subdirectories not being built:
23 standard_always_targets = distprep clean distclean maintainer-clean
24
25 .PHONY: $(standard_targets) install-strip html man installcheck-parallel
26
27 # make `all' the default target
28 all:
29
30 # Delete target files if the command fails after it has
31 # started to update the file.
32 .DELETE_ON_ERROR:
33
34 # Never delete any intermediate files automatically.
35 .SECONDARY:
36
37 # PostgreSQL version number
38 VERSION = @PACKAGE_VERSION@
39 MAJORVERSION = @PG_MAJORVERSION@
40
41 # Support for VPATH builds
42 vpath_build = @vpath_build@
43 abs_top_srcdir = @abs_top_srcdir@
44
45 ifneq ($(vpath_build),yes)
46 top_srcdir = $(top_builddir)
47 srcdir = .
48 else # vpath_build = yes
49 top_srcdir = $(abs_top_srcdir)
50 srcdir = $(top_srcdir)/$(subdir)
51 VPATH = $(srcdir)
52 endif
53
54 vpathsearch = `for f in $(addsuffix /$(1),$(subst :, ,. $(VPATH))); do test -r $$f && echo $$f && break; done`
55
56 # Saved arguments from configure
57 configure_args = @configure_args@
58
59
60 ##########################################################################
61 #
62 # Installation directories
63 #
64 # These are set by the equivalent --xxxdir configure options.  We
65 # append "postgresql" to some of them, if the string does not already
66 # contain "pgsql" or "postgres", in order to avoid directory clutter.
67 #
68 # In a PGXS build, we cannot use the values inserted into Makefile.global
69 # by configure, since the installation tree may have been relocated.
70 # Instead get the path values from pg_config.
71
72 ifndef PGXS
73
74 # Note that prefix, exec_prefix, and datarootdir aren't defined in a PGXS build;
75 # makefiles may only use the derived variables such as bindir.
76
77 prefix := @prefix@
78 exec_prefix := @exec_prefix@
79 datarootdir := @datarootdir@
80
81 bindir := @bindir@
82
83 datadir := @datadir@
84 ifeq "$(findstring pgsql, $(datadir))" ""
85 ifeq "$(findstring postgres, $(datadir))" ""
86 override datadir := $(datadir)/postgresql
87 endif
88 endif
89
90 sysconfdir := @sysconfdir@
91 ifeq "$(findstring pgsql, $(sysconfdir))" ""
92 ifeq "$(findstring postgres, $(sysconfdir))" ""
93 override sysconfdir := $(sysconfdir)/postgresql
94 endif
95 endif
96
97 libdir := @libdir@
98
99 pkglibdir = $(libdir)
100 ifeq "$(findstring pgsql, $(pkglibdir))" ""
101 ifeq "$(findstring postgres, $(pkglibdir))" ""
102 override pkglibdir := $(pkglibdir)/postgresql
103 endif
104 endif
105
106 includedir := @includedir@
107
108 pkgincludedir = $(includedir)
109 ifeq "$(findstring pgsql, $(pkgincludedir))" ""
110 ifeq "$(findstring postgres, $(pkgincludedir))" ""
111 override pkgincludedir := $(pkgincludedir)/postgresql
112 endif
113 endif
114
115 mandir := @mandir@
116
117 docdir := @docdir@
118 ifeq "$(findstring pgsql, $(docdir))" ""
119 ifeq "$(findstring postgres, $(docdir))" ""
120 override docdir := $(docdir)/postgresql
121 endif
122 endif
123
124 htmldir := @htmldir@
125
126 localedir := @localedir@
127
128 else # PGXS case
129
130 # Extension makefiles should set PG_CONFIG, but older ones might not
131 ifndef PG_CONFIG
132 PG_CONFIG = pg_config
133 endif
134
135 bindir := $(shell $(PG_CONFIG) --bindir)
136 datadir := $(shell $(PG_CONFIG) --sharedir)
137 sysconfdir := $(shell $(PG_CONFIG) --sysconfdir)
138 libdir := $(shell $(PG_CONFIG) --libdir)
139 pkglibdir := $(shell $(PG_CONFIG) --pkglibdir)
140 includedir := $(shell $(PG_CONFIG) --includedir)
141 pkgincludedir := $(shell $(PG_CONFIG) --pkgincludedir)
142 mandir := $(shell $(PG_CONFIG) --mandir)
143 docdir := $(shell $(PG_CONFIG) --docdir)
144 localedir := $(shell $(PG_CONFIG) --localedir)
145
146 endif # PGXS
147
148 # These derived path variables aren't separately configurable.
149
150 includedir_server = $(pkgincludedir)/server
151 includedir_internal = $(pkgincludedir)/internal
152 pgxsdir = $(pkglibdir)/pgxs
153
154
155 ##########################################################################
156 #
157 # Features
158 #
159 # Records the choice of the various --enable-xxx and --with-xxx options.
160
161 with_perl       = @with_perl@
162 with_python     = @with_python@
163 with_tcl        = @with_tcl@
164 with_openssl    = @with_openssl@
165 with_ossp_uuid  = @with_ossp_uuid@
166 with_selinux    = @with_selinux@
167 with_libxml     = @with_libxml@
168 with_libxslt    = @with_libxslt@
169 with_system_tzdata = @with_system_tzdata@
170 with_zlib       = @with_zlib@
171 enable_rpath    = @enable_rpath@
172 enable_nls      = @enable_nls@
173 enable_debug    = @enable_debug@
174 enable_dtrace   = @enable_dtrace@
175 enable_coverage = @enable_coverage@
176 enable_thread_safety    = @enable_thread_safety@
177
178 python_enable_shared    = @python_enable_shared@
179 python_includespec      = @python_includespec@
180 python_libdir           = @python_libdir@
181 python_libspec          = @python_libspec@
182 python_additional_libs  = @python_additional_libs@
183 python_majorversion     = @python_majorversion@
184 python_version          = @python_version@
185
186 krb_srvtab = @krb_srvtab@
187
188 TCLSH                   = @TCLSH@
189 TCL_LIB_FILE            = @TCL_LIB_FILE@
190 TCL_LIBS                = @TCL_LIBS@
191 TCL_LIB_SPEC            = @TCL_LIB_SPEC@
192 TCL_INCLUDE_SPEC        = @TCL_INCLUDE_SPEC@
193 TCL_SHARED_BUILD        = @TCL_SHARED_BUILD@
194 TCL_SHLIB_LD_LIBS       = @TCL_SHLIB_LD_LIBS@
195
196 PTHREAD_CFLAGS          = @PTHREAD_CFLAGS@
197 PTHREAD_LIBS            = @PTHREAD_LIBS@
198
199
200 ##########################################################################
201 #
202 # Programs and flags
203
204 # Compilers
205
206 CPP = @CPP@
207 CPPFLAGS = @CPPFLAGS@
208
209 ifdef PGXS
210 override CPPFLAGS := -I$(includedir_server) -I$(includedir_internal) $(CPPFLAGS)
211 else # not PGXS
212 override CPPFLAGS := -I$(top_srcdir)/src/include $(CPPFLAGS)
213 ifdef VPATH
214 override CPPFLAGS := -I$(top_builddir)/src/include $(CPPFLAGS)
215 endif
216 endif # not PGXS
217
218 CC = @CC@
219 GCC = @GCC@
220 SUN_STUDIO_CC = @SUN_STUDIO_CC@
221 CFLAGS = @CFLAGS@
222 CFLAGS_VECTOR = @CFLAGS_VECTOR@
223
224 # Kind-of compilers
225
226 BISON = @BISON@
227 BISONFLAGS = @BISONFLAGS@ $(YFLAGS)
228 FLEX = @FLEX@
229 FLEXFLAGS = @FLEXFLAGS@ $(LFLAGS)
230 DTRACE = @DTRACE@
231 DTRACEFLAGS = @DTRACEFLAGS@
232 ZIC = @ZIC@
233
234 # Linking
235
236 AR = @AR@
237 DLLTOOL = @DLLTOOL@
238 DLLWRAP = @DLLWRAP@
239 LIBS = @LIBS@
240 LDAP_LIBS_FE = @LDAP_LIBS_FE@
241 LDAP_LIBS_BE = @LDAP_LIBS_BE@
242 OSSP_UUID_LIBS = @OSSP_UUID_LIBS@
243 LD = @LD@
244 with_gnu_ld = @with_gnu_ld@
245 ld_R_works = @ld_R_works@
246
247 # We want -L for libpgport.a and libpgcommon.a to be first in LDFLAGS.  We
248 # also need LDFLAGS to be a "recursively expanded" variable, else adjustments
249 # to rpathdir don't work right.  So we must NOT do LDFLAGS := something,
250 # meaning this has to be done first and elsewhere we must only do LDFLAGS +=
251 # something.
252 ifdef PGXS
253   LDFLAGS = -L$(libdir)
254 else
255   LDFLAGS = -L$(top_builddir)/src/port -L$(top_builddir)/src/common
256 endif
257 LDFLAGS += @LDFLAGS@
258
259 LDFLAGS_EX = @LDFLAGS_EX@
260 # LDFLAGS_SL might have already been assigned by calling makefile
261 LDFLAGS_SL += @LDFLAGS_SL@
262 LDREL = -r
263 LDOUT = -o
264 RANLIB = @RANLIB@
265 WINDRES = @WINDRES@
266 X = @EXEEXT@
267
268 # Perl
269
270 ifneq (@PERL@,)
271     # quoted to protect pathname with spaces
272     PERL                = '@PERL@'
273 else
274     PERL                = $(missing) perl
275 endif
276 perl_archlibexp         = @perl_archlibexp@
277 perl_privlibexp         = @perl_privlibexp@
278 perl_useshrplib         = @perl_useshrplib@
279 perl_embed_ldflags      = @perl_embed_ldflags@
280
281 # Miscellaneous
282
283 AWK     = @AWK@
284 LN_S    = @LN_S@
285 MSGFMT  = @MSGFMT@
286 MSGMERGE = @MSGMERGE@
287 PYTHON  = @PYTHON@
288 TAR     = @TAR@
289 XGETTEXT = @XGETTEXT@
290
291 GZIP    = gzip
292 BZIP2   = bzip2
293
294 # Installation.
295
296 install_bin = @install_bin@
297 install_sh = $(SHELL) $(top_srcdir)/config/install-sh -c
298 INSTALL = $(if $(use_install_sh),$(install_sh),$(if $(install_bin),$(install_bin),$(install_sh)))
299
300 INSTALL_SCRIPT_MODE     = 755
301 INSTALL_DATA_MODE       = 644
302 INSTALL_PROGRAM = $(INSTALL_PROGRAM_ENV) $(INSTALL) $(INSTALL_STRIP_FLAG)
303 INSTALL_SCRIPT  = $(INSTALL) -m $(INSTALL_SCRIPT_MODE)
304 INSTALL_DATA    = $(INSTALL) -m $(INSTALL_DATA_MODE)
305 INSTALL_STLIB   = $(INSTALL_STLIB_ENV) $(INSTALL_DATA) $(INSTALL_STRIP_FLAG)
306 INSTALL_SHLIB   = $(INSTALL_SHLIB_ENV) $(INSTALL) $(INSTALL_SHLIB_OPTS) $(INSTALL_STRIP_FLAG)
307 # Override in Makefile.port if necessary
308 INSTALL_SHLIB_OPTS = -m 755
309
310 MKDIR_P = @MKDIR_P@
311
312 missing         = $(SHELL) $(top_srcdir)/config/missing
313
314 STRIP           = @STRIP@
315 STRIP_STATIC_LIB = @STRIP_STATIC_LIB@
316 STRIP_SHARED_LIB = @STRIP_SHARED_LIB@
317
318 # Documentation
319
320 have_docbook    = @have_docbook@
321 COLLATEINDEX    = @COLLATEINDEX@
322 DOCBOOKSTYLE    = @DOCBOOKSTYLE@
323 JADE                    = @JADE@
324 NSGMLS                  = @NSGMLS@
325 OSX                             = @OSX@
326 XSLTPROC                = @XSLTPROC@
327
328 # Code coverage
329
330 GCOV = @GCOV@
331 LCOV = @LCOV@
332 GENHTML = @GENHTML@
333
334 ifeq ($(enable_coverage),yes)
335 # ccache loses .gcno files
336 export CCACHE_DISABLE = 1
337 endif
338
339 # Feature settings
340
341 DEF_PGPORT = @default_port@
342 WANTED_LANGUAGES = @WANTED_LANGUAGES@
343
344
345 ##########################################################################
346 #
347 # Additional platform-specific settings
348 #
349
350 # Name of the "template"
351 PORTNAME= @PORTNAME@
352
353 build_os = @build_os@
354
355 host_tuple = @host@
356 host_os = @host_os@
357 host_cpu = @host_cpu@
358
359 # Make HAVE_IPV6 available for initdb script creation
360 HAVE_IPV6= @HAVE_IPV6@
361
362 # The HP-UX port makefile, for one, needs access to this symbol
363 HAVE_POSIX_SIGNALS= @HAVE_POSIX_SIGNALS@
364
365 # This is mainly for use on FreeBSD, where we have both a.out and elf
366 # systems now.  May be applicable to other systems to?
367 ELF_SYSTEM= @ELF_SYS@
368
369 # Backend stack size limit has to be hard-wired on Windows (it's in bytes)
370 WIN32_STACK_RLIMIT=4194304
371
372 # Set if we have a working win32 crashdump header
373 have_win32_dbghelp = @have_win32_dbghelp@
374
375 # Pull in platform-specific magic
376 include $(top_builddir)/src/Makefile.port
377
378 # Set up rpath if enabled.  By default it will point to our libdir,
379 # but individual Makefiles can force other rpath paths if needed.
380 rpathdir = $(libdir)
381
382 ifeq ($(enable_rpath), yes)
383 LDFLAGS += $(rpath)
384 endif
385
386
387 ##########################################################################
388 #
389 # Some variables needed to find some client interfaces
390
391 ifdef PGXS
392 # some contribs assumes headers and libs are in the source tree...
393 libpq_srcdir = $(includedir)
394 libpq_builddir = $(libdir)
395 else
396 libpq_srcdir = $(top_srcdir)/src/interfaces/libpq
397 libpq_builddir = $(top_builddir)/src/interfaces/libpq
398 endif
399
400 # This macro is for use by libraries linking to libpq.  (Because libpgport
401 # isn't created with the same link flags as libpq, it can't be used.)
402 libpq = -L$(libpq_builddir) -lpq
403
404 # This macro is for use by client executables (not libraries) that use libpq.
405 # We force clients to pull symbols from the non-shared libraries libpgport
406 # and libpgcommon rather than pulling some libpgport symbols from libpq just
407 # because libpq uses those functions too.  This makes applications less
408 # dependent on changes in libpq's usage of pgport.  To do this we link to
409 # pgport before libpq.  This does cause duplicate -lpgport's to appear
410 # on client link lines.
411 ifdef PGXS
412 libpq_pgport = -L$(libdir) -lpgport -lpgcommon $(libpq)
413 else
414 libpq_pgport = -L$(top_builddir)/src/port -lpgport \
415                            -L$(top_builddir)/src/common -lpgcommon $(libpq)
416 endif
417
418 # If PGXS is not defined, build libpq and libpgport dependancies as required.
419 # If the build is with PGXS, then these are supposed to be already built and
420 # installed, and we just ensure that the expected files exist.
421 ifndef PGXS
422 submake-libpq:
423         $(MAKE) -C $(libpq_builddir) all
424 else
425 submake-libpq: $(libdir)/libpq.so ;
426 endif
427
428 ifndef PGXS
429 submake-libpgport:
430         $(MAKE) -C $(top_builddir)/src/port all
431         $(MAKE) -C $(top_builddir)/src/common all
432 else
433 submake-libpgport: $(libdir)/libpgport.a $(libdir)/libpgcommon.a ;
434 endif
435
436 .PHONY: submake-libpq submake-libpgport
437
438
439 ##########################################################################
440 #
441 # Testing support
442
443 PL_TESTDB = pl_regression
444 CONTRIB_TESTDB = contrib_regression
445 ifneq ($(MODULE_big),)
446   CONTRIB_TESTDB_MODULE = contrib_regression_$(MODULE_big)
447 else
448   ifneq ($(MODULES),)
449     CONTRIB_TESTDB_MODULE = contrib_regression_$(MODULES)
450   else
451     CONTRIB_TESTDB_MODULE = contrib_regression
452   endif
453 endif
454
455 ifdef NO_LOCALE
456 NOLOCALE += --no-locale
457 endif
458
459 pg_regress_locale_flags = $(if $(ENCODING),--encoding=$(ENCODING)) $(NOLOCALE)
460
461 pg_regress_check = $(top_builddir)/src/test/regress/pg_regress --inputdir=$(srcdir) --temp-install=./tmp_check --top-builddir=$(top_builddir) $(pg_regress_locale_flags)
462 pg_regress_installcheck = $(top_builddir)/src/test/regress/pg_regress --inputdir=$(srcdir) --psqldir='$(PSQLDIR)' $(pg_regress_locale_flags)
463
464 pg_regress_clean_files = results/ regression.diffs regression.out tmp_check/ log/
465
466
467 ##########################################################################
468 #
469 # Customization
470 #
471 # This includes your local customizations if Makefile.custom exists
472 # in the source directory.  This file doesn't exist in the original
473 # distribution so that it doesn't get overwritten when you upgrade.
474 #
475 # NOTE:  Makefile.custom is from the pre-Autoconf days of PostgreSQL.
476 # You are liable to shoot yourself in the foot if you use it without
477 # knowing exactly what you're doing.  The preferred (and more
478 # reliable) method is to communicate what you want to do to the
479 # configure script, and leave the makefiles alone.
480
481 -include $(top_srcdir)/src/Makefile.custom
482
483 ifneq ($(CUSTOM_INSTALL),)
484 INSTALL= $(CUSTOM_INSTALL)
485 endif
486
487 ifneq ($(CUSTOM_CC),)
488   CC= $(CUSTOM_CC)
489 endif
490
491 ifneq ($(CUSTOM_COPT),)
492   COPT= $(CUSTOM_COPT)
493 endif
494
495 ifdef COPT
496    CFLAGS += $(COPT)
497    LDFLAGS += $(COPT)
498 endif
499
500 ifdef PROFILE
501    CFLAGS += $(PROFILE)
502    LDFLAGS += $(PROFILE)
503 endif
504
505
506 ##########################################################################
507 #
508 # substitute implementations of C library routines (see src/port/)
509 # note we already included -L.../src/port in LDFLAGS above
510
511 LIBOBJS = @LIBOBJS@
512
513 LIBS := -lpgport -lpgcommon $(LIBS)
514
515 # to make ws2_32.lib the last library, and always link with shfolder,
516 # so SHGetFolderName isn't picked up from shell32.dll
517 ifeq ($(PORTNAME),win32)
518 LIBS += -lws2_32 -lshfolder
519 endif
520
521 # Not really standard libc functions, used by the backend.
522 TAS         = @TAS@
523
524
525 ##########################################################################
526 #
527 # Global targets and rules
528
529 %.c: %.l
530 ifdef FLEX
531         $(FLEX) $(if $(FLEX_NO_BACKUP),-b) $(FLEXFLAGS) -o'$@' $<
532         @$(if $(FLEX_NO_BACKUP),if [ `wc -l <lex.backup` -eq 1 ]; then rm lex.backup; else echo "Scanner requires backup; see lex.backup." 1>&2; exit 1; fi)
533 else
534         @$(missing) flex $< '$@'
535 endif
536
537 %.c: %.y
538         $(if $(BISON_CHECK_CMD),$(BISON_CHECK_CMD))
539 ifdef BISON
540         $(BISON) $(BISONFLAGS) -o $@ $<
541 else
542         @$(missing) bison $< $@
543 endif
544
545 %.i: %.c
546         $(CPP) $(CPPFLAGS) -o $@ $<
547
548 %.gz: %
549         $(GZIP) --best -c $< >$@
550
551 %.bz2: %
552         $(BZIP2) -c $< >$@
553
554 # Direct builds of foo.c -> foo are disabled to avoid generating
555 # *.dSYM junk on Macs.  All builds should normally go through the
556 # foo.c -> foo.o -> foo steps.  This also ensures that dependency
557 # tracking (see below) is used.
558 %: %.c
559
560 ifndef PGXS
561
562 # Remake Makefile.global from Makefile.global.in if the latter
563 # changed. In order to trigger this rule, the including file must
564 # write `include $(top_builddir)/src/Makefile.global', not some
565 # shortcut thereof.
566 $(top_builddir)/src/Makefile.global: $(top_srcdir)/src/Makefile.global.in $(top_builddir)/config.status
567         cd $(top_builddir) && ./config.status src/Makefile.global
568
569 # Remake pg_config.h from pg_config.h.in if the latter changed.
570 # config.status will not change the timestamp on pg_config.h if it
571 # doesn't change, so as to avoid recompiling the entire tree
572 # unnecessarily. Therefore we make config.status update a timestamp file
573 # stamp-h every time it runs, so that we don't trigger this rule every time.
574 # (We do trigger the null rule for stamp-h to pg_config.h every time; so it's
575 # important for that rule to be empty!)
576 #
577 # Of course you need to turn on dependency tracking to get any
578 # dependencies on pg_config.h.
579 $(top_builddir)/src/include/pg_config.h: $(top_builddir)/src/include/stamp-h ;
580
581 $(top_builddir)/src/include/stamp-h: $(top_srcdir)/src/include/pg_config.h.in $(top_builddir)/config.status
582         cd $(top_builddir) && ./config.status src/include/pg_config.h
583
584 # Also remake pg_config_ext.h from pg_config_ext.h.in, same logic as above.
585 $(top_builddir)/src/include/pg_config_ext.h: $(top_builddir)/src/include/stamp-ext-h ;
586
587 $(top_builddir)/src/include/stamp-ext-h: $(top_srcdir)/src/include/pg_config_ext.h.in $(top_builddir)/config.status
588         cd $(top_builddir) && ./config.status src/include/pg_config_ext.h
589
590 # Also remake ecpg_config.h from ecpg_config.h.in if the latter changed, same
591 # logic as above.
592 $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h: $(top_builddir)/src/interfaces/ecpg/include/stamp-h ;
593
594  $(top_builddir)/src/interfaces/ecpg/include/stamp-h: $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h.in $(top_builddir)/config.status
595         cd $(top_builddir) && ./config.status src/interfaces/ecpg/include/ecpg_config.h
596
597 # When configure changes, rerun configure with the same options as
598 # last time. To change configure, you need to run autoconf manually.
599 $(top_builddir)/config.status: $(top_srcdir)/configure
600         cd $(top_builddir) && ./config.status --recheck
601
602 endif # not PGXS
603
604
605 install-strip:
606 # install-strip always uses install-sh, so that strip options can be
607 # passed.
608         $(MAKE) use_install_sh=yes \
609             INSTALL_PROGRAM_ENV="STRIPPROG='$(STRIP)'" \
610             INSTALL_STLIB_ENV="STRIPPROG='$(STRIP_STATIC_LIB)'" \
611             INSTALL_SHLIB_ENV="STRIPPROG='$(STRIP_SHARED_LIB)'" \
612             INSTALL_STRIP_FLAG=-s \
613             install
614
615
616 ##########################################################################
617 #
618 # Recursive make support
619 # ----------------------
620 # Instead of recursing through subdirectories with a for loop or
621 # repeated $(MAKE) -C whatever calls, this is a little smarter: it
622 # allows parallel make across directories and lets make -k and -q work
623 # correctly.
624
625 # We need the $(eval) function and order-only prerequisites, which are
626 # available in GNU make 3.80.  That also happens to be the version
627 # where the .VARIABLES variable was introduced, so this is a simple check.
628 ifndef .VARIABLES
629 $(error GNU make 3.80 or newer is required.  You are using version $(MAKE_VERSION))
630 endif
631
632 # This function is only for internal use below.  It should be called
633 # using $(eval).  It will set up a target so that it recurses into
634 # a given subdirectory.  Note that to avoid a nasty bug in make 3.80,
635 # this function has to avoid using any complicated constructs (like
636 # multiple targets on a line) and also not contain any lines that expand
637 # to more than about 200 bytes.  This is why we make it apply to just one
638 # subdirectory at a time, rather than to a list of subdirectories.
639 # $1: target name, e.g., all
640 # $2: subdir name
641 # $3: target to run in subdir, usually same as $1
642 define _create_recursive_target
643 .PHONY: $(1)-$(2)-recurse
644 $(1): $(1)-$(2)-recurse
645 $(1)-$(2)-recurse:
646         $$(MAKE) -C $(2) $(3)
647 endef
648 # Note that the use of $$ on the last line above is important; we want
649 # $(MAKE) to be evaluated when the rule is run, not when the $(eval) is run
650 # to create the rule.  This is necessary to get make -q working.
651
652 # Call this function in a makefile that needs to recurse into subdirectories.
653 # In the normal case all arguments can be defaulted.
654 # $1: targets to make recursive (defaults to list of standard targets)
655 # $2: list of subdirs (defaults to SUBDIRS variable)
656 # $3: target to run in subdir (defaults to current element of $1)
657 recurse = $(foreach target,$(if $1,$1,$(standard_targets)),$(foreach subdir,$(if $2,$2,$(SUBDIRS)),$(eval $(call _create_recursive_target,$(target),$(subdir),$(if $3,$3,$(target))))))
658
659 # If a makefile's list of SUBDIRS varies depending on configuration, then
660 # any subdirectories excluded from SUBDIRS should instead be added to
661 # ALWAYS_SUBDIRS, and then it must call recurse_always as well as recurse.
662 # This ensures that distprep, distclean, etc will apply to all subdirectories.
663 # In the normal case all arguments will be defaulted.
664 # $1: targets to make recursive (defaults to standard_always_targets)
665 # $2: list of subdirs (defaults to ALWAYS_SUBDIRS variable)
666 # $3: target to run in subdir (defaults to current element of $1)
667 recurse_always = $(foreach target,$(if $1,$1,$(standard_always_targets)),$(foreach subdir,$(if $2,$2,$(ALWAYS_SUBDIRS)),$(eval $(call _create_recursive_target,$(target),$(subdir),$(if $3,$3,$(target))))))
668
669
670 ##########################################################################
671 #
672 # Automatic dependency generation
673 # -------------------------------
674 # When we configure with --enable-depend then we override the default
675 # compilation rule with the magic below. While or after creating the
676 # actual output file we also create a dependency list for the .c file.
677 # Next time we invoke make we will have top-notch information about
678 # whether this file needs to be updated. The dependency files are kept
679 # in the .deps subdirectory of each directory.
680
681 autodepend = @autodepend@
682
683 ifeq ($(autodepend), yes)
684
685 ifndef COMPILE.c
686 COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
687 endif
688
689 DEPDIR = .deps
690
691 ifeq ($(GCC), yes)
692
693 # GCC allows us to create object and dependency file in one invocation.
694 %.o : %.c
695         @if test ! -d $(DEPDIR); then mkdir -p $(DEPDIR); fi
696         $(COMPILE.c) -o $@ $< -MMD -MP -MF $(DEPDIR)/$(*F).Po
697
698 endif # GCC
699
700 # Include all the dependency files generated for the current
701 # directory. Note that make would complain if include was called with
702 # no arguments.
703 Po_files := $(wildcard $(DEPDIR)/*.Po)
704 ifneq (,$(Po_files))
705 include $(Po_files)
706 endif
707
708 # hook for clean-up
709 clean distclean maintainer-clean: clean-deps
710
711 .PHONY: clean-deps
712 clean-deps:
713         @rm -rf $(DEPDIR)
714
715 endif # autodepend
716
717
718 ##########################################################################
719 #
720 # Native language support
721
722 ifeq ($(enable_nls), yes)
723 ifneq (,$(wildcard $(srcdir)/nls.mk))
724
725 include $(top_srcdir)/src/nls-global.mk
726
727 endif # nls.mk
728 endif # enable_nls
729
730
731 ##########################################################################
732 #
733 # Coverage
734
735 # Explanation of involved files:
736 #   foo.c       source file
737 #   foo.o       object file
738 #   foo.gcno    gcov graph (a.k.a. "notes") file, created at compile time
739 #               (by gcc -ftest-coverage)
740 #   foo.gcda    gcov data file, created when the program is run (for
741 #               programs compiled with gcc -fprofile-arcs)
742 #   foo.c.gcov  gcov output file with coverage information, created by
743 #               gcov from foo.gcda (by "make coverage")
744 #   foo.c.gcov.out  stdout captured when foo.c.gcov is created, mildly
745 #               interesting
746 #   lcov.info   lcov tracefile, built from gcda files in one directory,
747 #               later collected by "make coverage-html"
748
749 ifeq ($(enable_coverage), yes)
750
751 # There is a strange interaction between lcov and existing .gcov
752 # output files.  Hence the rm command and the ordering dependency.
753
754 gcda_files := $(wildcard *.gcda)
755
756 lcov.info: $(gcda_files)
757         rm -f *.gcov
758         $(if $^,$(LCOV) -d . -c -o $@ $(LCOVFLAGS))
759
760 %.c.gcov: %.gcda | lcov.info
761         $(GCOV) -b -f -p -o . $(GCOVFLAGS) $*.c >$*.c.gcov.out
762
763 coverage: $(gcda_files:.gcda=.c.gcov) lcov.info
764
765 .PHONY: coverage-html
766 coverage-html: coverage
767         rm -rf coverage
768         mkdir coverage
769         $(GENHTML) --show-details --legend --output-directory=coverage --title=PostgreSQL --num-spaces=4 --prefix=$(abs_top_srcdir) `find . -name lcov.info -print`
770
771
772 # hook for clean-up
773 clean distclean maintainer-clean: clean-coverage
774
775 .PHONY: clean-coverage
776 clean-coverage:
777         rm -rf coverage
778         rm -f *.gcda *.gcno lcov.info *.gcov *.gcov.out
779
780
781 # User-callable target to reset counts between test runs
782 coverage-clean:
783         rm -f `find . -name '*.gcda' -print`
784
785 endif # enable_coverage