]> granicus.if.org Git - postgresql/blob - src/Makefile.global.in
Use WaitLatch, not pg_usleep, for delaying in pg_sleep().
[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
419 submake-libpq:
420         $(MAKE) -C $(libpq_builddir) all
421
422 submake-libpgport:
423         $(MAKE) -C $(top_builddir)/src/port all
424         $(MAKE) -C $(top_builddir)/src/common all
425
426 .PHONY: submake-libpq submake-libpgport
427
428
429 ##########################################################################
430 #
431 # Testing support
432
433 PL_TESTDB = pl_regression
434 CONTRIB_TESTDB = contrib_regression
435 ifneq ($(MODULE_big),)
436   CONTRIB_TESTDB_MODULE = contrib_regression_$(MODULE_big)
437 else
438   ifneq ($(MODULES),)
439     CONTRIB_TESTDB_MODULE = contrib_regression_$(MODULES)
440   else
441     CONTRIB_TESTDB_MODULE = contrib_regression
442   endif
443 endif
444
445 ifdef NO_LOCALE
446 NOLOCALE += --no-locale
447 endif
448
449 pg_regress_locale_flags = $(if $(ENCODING),--encoding=$(ENCODING)) $(NOLOCALE)
450
451 pg_regress_check = $(top_builddir)/src/test/regress/pg_regress --inputdir=$(srcdir) --temp-install=./tmp_check --top-builddir=$(top_builddir) $(pg_regress_locale_flags)
452 pg_regress_installcheck = $(top_builddir)/src/test/regress/pg_regress --inputdir=$(srcdir) --psqldir='$(PSQLDIR)' $(pg_regress_locale_flags)
453
454 pg_regress_clean_files = results/ regression.diffs regression.out tmp_check/ log/
455
456
457 ##########################################################################
458 #
459 # Customization
460 #
461 # This includes your local customizations if Makefile.custom exists
462 # in the source directory.  This file doesn't exist in the original
463 # distribution so that it doesn't get overwritten when you upgrade.
464 #
465 # NOTE:  Makefile.custom is from the pre-Autoconf days of PostgreSQL.
466 # You are liable to shoot yourself in the foot if you use it without
467 # knowing exactly what you're doing.  The preferred (and more
468 # reliable) method is to communicate what you want to do to the
469 # configure script, and leave the makefiles alone.
470
471 -include $(top_srcdir)/src/Makefile.custom
472
473 ifneq ($(CUSTOM_INSTALL),)
474 INSTALL= $(CUSTOM_INSTALL)
475 endif
476
477 ifneq ($(CUSTOM_CC),)
478   CC= $(CUSTOM_CC)
479 endif
480
481 ifneq ($(CUSTOM_COPT),)
482   COPT= $(CUSTOM_COPT)
483 endif
484
485 ifdef COPT
486    CFLAGS += $(COPT)
487    LDFLAGS += $(COPT)
488 endif
489
490 ifdef PROFILE
491    CFLAGS += $(PROFILE)
492    LDFLAGS += $(PROFILE)
493 endif
494
495
496 ##########################################################################
497 #
498 # substitute implementations of C library routines (see src/port/)
499 # note we already included -L.../src/port in LDFLAGS above
500
501 LIBOBJS = @LIBOBJS@
502
503 LIBS := -lpgport -lpgcommon $(LIBS)
504
505 # to make ws2_32.lib the last library, and always link with shfolder,
506 # so SHGetFolderName isn't picked up from shell32.dll
507 ifeq ($(PORTNAME),win32)
508 LIBS += -lws2_32 -lshfolder
509 endif
510
511 # Not really standard libc functions, used by the backend.
512 TAS         = @TAS@
513
514
515 ##########################################################################
516 #
517 # Global targets and rules
518
519 %.c: %.l
520 ifdef FLEX
521         $(FLEX) $(if $(FLEX_NO_BACKUP),-b) $(FLEXFLAGS) -o'$@' $<
522         @$(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)
523 else
524         @$(missing) flex $< '$@'
525 endif
526
527 %.c: %.y
528         $(if $(BISON_CHECK_CMD),$(BISON_CHECK_CMD))
529 ifdef BISON
530         $(BISON) $(BISONFLAGS) -o $@ $<
531 else
532         @$(missing) bison $< $@
533 endif
534
535 %.i: %.c
536         $(CPP) $(CPPFLAGS) -o $@ $<
537
538 %.gz: %
539         $(GZIP) --best -c $< >$@
540
541 %.bz2: %
542         $(BZIP2) -c $< >$@
543
544 # Direct builds of foo.c -> foo are disabled to avoid generating
545 # *.dSYM junk on Macs.  All builds should normally go through the
546 # foo.c -> foo.o -> foo steps.  This also ensures that dependency
547 # tracking (see below) is used.
548 %: %.c
549
550 ifndef PGXS
551
552 # Remake Makefile.global from Makefile.global.in if the latter
553 # changed. In order to trigger this rule, the including file must
554 # write `include $(top_builddir)/src/Makefile.global', not some
555 # shortcut thereof.
556 $(top_builddir)/src/Makefile.global: $(top_srcdir)/src/Makefile.global.in $(top_builddir)/config.status
557         cd $(top_builddir) && ./config.status src/Makefile.global
558
559 # Remake pg_config.h from pg_config.h.in if the latter changed.
560 # config.status will not change the timestamp on pg_config.h if it
561 # doesn't change, so as to avoid recompiling the entire tree
562 # unnecessarily. Therefore we make config.status update a timestamp file
563 # stamp-h every time it runs, so that we don't trigger this rule every time.
564 # (We do trigger the null rule for stamp-h to pg_config.h every time; so it's
565 # important for that rule to be empty!)
566 #
567 # Of course you need to turn on dependency tracking to get any
568 # dependencies on pg_config.h.
569 $(top_builddir)/src/include/pg_config.h: $(top_builddir)/src/include/stamp-h ;
570
571 $(top_builddir)/src/include/stamp-h: $(top_srcdir)/src/include/pg_config.h.in $(top_builddir)/config.status
572         cd $(top_builddir) && ./config.status src/include/pg_config.h
573
574 # Also remake pg_config_ext.h from pg_config_ext.h.in, same logic as above.
575 $(top_builddir)/src/include/pg_config_ext.h: $(top_builddir)/src/include/stamp-ext-h ;
576
577 $(top_builddir)/src/include/stamp-ext-h: $(top_srcdir)/src/include/pg_config_ext.h.in $(top_builddir)/config.status
578         cd $(top_builddir) && ./config.status src/include/pg_config_ext.h
579
580 # Also remake ecpg_config.h from ecpg_config.h.in if the latter changed, same
581 # logic as above.
582 $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h: $(top_builddir)/src/interfaces/ecpg/include/stamp-h ;
583
584  $(top_builddir)/src/interfaces/ecpg/include/stamp-h: $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h.in $(top_builddir)/config.status
585         cd $(top_builddir) && ./config.status src/interfaces/ecpg/include/ecpg_config.h
586
587 # When configure changes, rerun configure with the same options as
588 # last time. To change configure, you need to run autoconf manually.
589 $(top_builddir)/config.status: $(top_srcdir)/configure
590         cd $(top_builddir) && ./config.status --recheck
591
592 endif # not PGXS
593
594
595 install-strip:
596 # install-strip always uses install-sh, so that strip options can be
597 # passed.
598         $(MAKE) use_install_sh=yes \
599             INSTALL_PROGRAM_ENV="STRIPPROG='$(STRIP)'" \
600             INSTALL_STLIB_ENV="STRIPPROG='$(STRIP_STATIC_LIB)'" \
601             INSTALL_SHLIB_ENV="STRIPPROG='$(STRIP_SHARED_LIB)'" \
602             INSTALL_STRIP_FLAG=-s \
603             install
604
605
606 ##########################################################################
607 #
608 # Recursive make support
609 # ----------------------
610 # Instead of recursing through subdirectories with a for loop or
611 # repeated $(MAKE) -C whatever calls, this is a little smarter: it
612 # allows parallel make across directories and lets make -k and -q work
613 # correctly.
614
615 # We need the $(eval) function and order-only prerequisites, which are
616 # available in GNU make 3.80.  That also happens to be the version
617 # where the .VARIABLES variable was introduced, so this is a simple check.
618 ifndef .VARIABLES
619 $(error GNU make 3.80 or newer is required.  You are using version $(MAKE_VERSION))
620 endif
621
622 # This function is only for internal use below.  It should be called
623 # using $(eval).  It will set up a target so that it recurses into
624 # a given subdirectory.  Note that to avoid a nasty bug in make 3.80,
625 # this function has to avoid using any complicated constructs (like
626 # multiple targets on a line) and also not contain any lines that expand
627 # to more than about 200 bytes.  This is why we make it apply to just one
628 # subdirectory at a time, rather than to a list of subdirectories.
629 # $1: target name, e.g., all
630 # $2: subdir name
631 # $3: target to run in subdir, usually same as $1
632 define _create_recursive_target
633 .PHONY: $(1)-$(2)-recurse
634 $(1): $(1)-$(2)-recurse
635 $(1)-$(2)-recurse:
636         $$(MAKE) -C $(2) $(3)
637 endef
638 # Note that the use of $$ on the last line above is important; we want
639 # $(MAKE) to be evaluated when the rule is run, not when the $(eval) is run
640 # to create the rule.  This is necessary to get make -q working.
641
642 # Call this function in a makefile that needs to recurse into subdirectories.
643 # In the normal case all arguments can be defaulted.
644 # $1: targets to make recursive (defaults to list of standard targets)
645 # $2: list of subdirs (defaults to SUBDIRS variable)
646 # $3: target to run in subdir (defaults to current element of $1)
647 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))))))
648
649 # If a makefile's list of SUBDIRS varies depending on configuration, then
650 # any subdirectories excluded from SUBDIRS should instead be added to
651 # ALWAYS_SUBDIRS, and then it must call recurse_always as well as recurse.
652 # This ensures that distprep, distclean, etc will apply to all subdirectories.
653 # In the normal case all arguments will be defaulted.
654 # $1: targets to make recursive (defaults to standard_always_targets)
655 # $2: list of subdirs (defaults to ALWAYS_SUBDIRS variable)
656 # $3: target to run in subdir (defaults to current element of $1)
657 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))))))
658
659
660 ##########################################################################
661 #
662 # Automatic dependency generation
663 # -------------------------------
664 # When we configure with --enable-depend then we override the default
665 # compilation rule with the magic below. While or after creating the
666 # actual output file we also create a dependency list for the .c file.
667 # Next time we invoke make we will have top-notch information about
668 # whether this file needs to be updated. The dependency files are kept
669 # in the .deps subdirectory of each directory.
670
671 autodepend = @autodepend@
672
673 ifeq ($(autodepend), yes)
674
675 ifndef COMPILE.c
676 COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
677 endif
678
679 DEPDIR = .deps
680
681 ifeq ($(GCC), yes)
682
683 # GCC allows us to create object and dependency file in one invocation.
684 %.o : %.c
685         @if test ! -d $(DEPDIR); then mkdir -p $(DEPDIR); fi
686         $(COMPILE.c) -o $@ $< -MMD -MP -MF $(DEPDIR)/$(*F).Po
687
688 endif # GCC
689
690 # Include all the dependency files generated for the current
691 # directory. Note that make would complain if include was called with
692 # no arguments.
693 Po_files := $(wildcard $(DEPDIR)/*.Po)
694 ifneq (,$(Po_files))
695 include $(Po_files)
696 endif
697
698 # hook for clean-up
699 clean distclean maintainer-clean: clean-deps
700
701 .PHONY: clean-deps
702 clean-deps:
703         @rm -rf $(DEPDIR)
704
705 endif # autodepend
706
707
708 ##########################################################################
709 #
710 # Native language support
711
712 ifeq ($(enable_nls), yes)
713 ifneq (,$(wildcard $(srcdir)/nls.mk))
714
715 include $(top_srcdir)/src/nls-global.mk
716
717 endif # nls.mk
718 endif # enable_nls
719
720
721 ##########################################################################
722 #
723 # Coverage
724
725 # Explanation of involved files:
726 #   foo.c       source file
727 #   foo.o       object file
728 #   foo.gcno    gcov graph (a.k.a. "notes") file, created at compile time
729 #               (by gcc -ftest-coverage)
730 #   foo.gcda    gcov data file, created when the program is run (for
731 #               programs compiled with gcc -fprofile-arcs)
732 #   foo.c.gcov  gcov output file with coverage information, created by
733 #               gcov from foo.gcda (by "make coverage")
734 #   foo.c.gcov.out  stdout captured when foo.c.gcov is created, mildly
735 #               interesting
736 #   lcov.info   lcov tracefile, built from gcda files in one directory,
737 #               later collected by "make coverage-html"
738
739 ifeq ($(enable_coverage), yes)
740
741 # There is a strange interaction between lcov and existing .gcov
742 # output files.  Hence the rm command and the ordering dependency.
743
744 gcda_files := $(wildcard *.gcda)
745
746 lcov.info: $(gcda_files)
747         rm -f *.gcov
748         $(if $^,$(LCOV) -d . -c -o $@ $(LCOVFLAGS))
749
750 %.c.gcov: %.gcda | lcov.info
751         $(GCOV) -b -f -p -o . $(GCOVFLAGS) $*.c >$*.c.gcov.out
752
753 coverage: $(gcda_files:.gcda=.c.gcov) lcov.info
754
755 .PHONY: coverage-html
756 coverage-html: coverage
757         rm -rf coverage
758         mkdir coverage
759         $(GENHTML) --show-details --legend --output-directory=coverage --title=PostgreSQL --num-spaces=4 --prefix=$(abs_top_srcdir) `find . -name lcov.info -print`
760
761
762 # hook for clean-up
763 clean distclean maintainer-clean: clean-coverage
764
765 .PHONY: clean-coverage
766 clean-coverage:
767         rm -rf coverage
768         rm -f *.gcda *.gcno lcov.info *.gcov *.gcov.out
769
770
771 # User-callable target to reset counts between test runs
772 coverage-clean:
773         rm -f `find . -name '*.gcda' -print`
774
775 endif # enable_coverage