]> granicus.if.org Git - postgresql/blob - src/Makefile.global.in
Fix sporadic rebuilds for .pc files
[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
223 # Kind-of compilers
224
225 BISON = @BISON@
226 BISONFLAGS = @BISONFLAGS@ $(YFLAGS)
227 FLEX = @FLEX@
228 FLEXFLAGS = @FLEXFLAGS@ $(LFLAGS)
229 DTRACE = @DTRACE@
230 DTRACEFLAGS = @DTRACEFLAGS@
231 ZIC = @ZIC@
232
233 # Linking
234
235 AR = @AR@
236 DLLTOOL = @DLLTOOL@
237 DLLWRAP = @DLLWRAP@
238 LIBS = @LIBS@
239 LDAP_LIBS_FE = @LDAP_LIBS_FE@
240 LDAP_LIBS_BE = @LDAP_LIBS_BE@
241 OSSP_UUID_LIBS = @OSSP_UUID_LIBS@
242 LD = @LD@
243 with_gnu_ld = @with_gnu_ld@
244 ld_R_works = @ld_R_works@
245
246 # We want -L for libpgport.a and libpgcommon.a to be first in LDFLAGS.  We
247 # also need LDFLAGS to be a "recursively expanded" variable, else adjustments
248 # to rpathdir don't work right.  So we must NOT do LDFLAGS := something,
249 # meaning this has to be done first and elsewhere we must only do LDFLAGS +=
250 # something.
251 ifdef PGXS
252   LDFLAGS = -L$(libdir)
253 else
254   LDFLAGS = -L$(top_builddir)/src/port -L$(top_builddir)/src/common
255 endif
256 LDFLAGS += @LDFLAGS@
257
258 LDFLAGS_EX = @LDFLAGS_EX@
259 # LDFLAGS_SL might have already been assigned by calling makefile
260 LDFLAGS_SL += @LDFLAGS_SL@
261 LDREL = -r
262 LDOUT = -o
263 RANLIB = @RANLIB@
264 WINDRES = @WINDRES@
265 X = @EXEEXT@
266
267 # Perl
268
269 ifneq (@PERL@,)
270     # quoted to protect pathname with spaces
271     PERL                = '@PERL@'
272 else
273     PERL                = $(missing) perl
274 endif
275 perl_archlibexp         = @perl_archlibexp@
276 perl_privlibexp         = @perl_privlibexp@
277 perl_useshrplib         = @perl_useshrplib@
278 perl_embed_ldflags      = @perl_embed_ldflags@
279
280 # Miscellaneous
281
282 AWK     = @AWK@
283 LN_S    = @LN_S@
284 MSGFMT  = @MSGFMT@
285 MSGMERGE = @MSGMERGE@
286 PYTHON  = @PYTHON@
287 TAR     = @TAR@
288 XGETTEXT = @XGETTEXT@
289
290 GZIP    = gzip
291 BZIP2   = bzip2
292
293 # Installation.
294
295 install_bin = @install_bin@
296 install_sh = $(SHELL) $(top_srcdir)/config/install-sh -c
297 INSTALL = $(if $(use_install_sh),$(install_sh),$(if $(install_bin),$(install_bin),$(install_sh)))
298
299 INSTALL_SCRIPT_MODE     = 755
300 INSTALL_DATA_MODE       = 644
301 INSTALL_PROGRAM = $(INSTALL_PROGRAM_ENV) $(INSTALL) $(INSTALL_STRIP_FLAG)
302 INSTALL_SCRIPT  = $(INSTALL) -m $(INSTALL_SCRIPT_MODE)
303 INSTALL_DATA    = $(INSTALL) -m $(INSTALL_DATA_MODE)
304 INSTALL_STLIB   = $(INSTALL_STLIB_ENV) $(INSTALL_DATA) $(INSTALL_STRIP_FLAG)
305 INSTALL_SHLIB   = $(INSTALL_SHLIB_ENV) $(INSTALL) $(INSTALL_SHLIB_OPTS) $(INSTALL_STRIP_FLAG)
306 # Override in Makefile.port if necessary
307 INSTALL_SHLIB_OPTS = -m 755
308
309 MKDIR_P = @MKDIR_P@
310
311 missing         = $(SHELL) $(top_srcdir)/config/missing
312
313 STRIP           = @STRIP@
314 STRIP_STATIC_LIB = @STRIP_STATIC_LIB@
315 STRIP_SHARED_LIB = @STRIP_SHARED_LIB@
316
317 # Documentation
318
319 have_docbook    = @have_docbook@
320 COLLATEINDEX    = @COLLATEINDEX@
321 DOCBOOKSTYLE    = @DOCBOOKSTYLE@
322 JADE                    = @JADE@
323 NSGMLS                  = @NSGMLS@
324 OSX                             = @OSX@
325 XSLTPROC                = @XSLTPROC@
326
327 # Code coverage
328
329 GCOV = @GCOV@
330 LCOV = @LCOV@
331 GENHTML = @GENHTML@
332
333 ifeq ($(enable_coverage),yes)
334 # ccache loses .gcno files
335 export CCACHE_DISABLE = 1
336 endif
337
338 # Feature settings
339
340 DEF_PGPORT = @default_port@
341 WANTED_LANGUAGES = @WANTED_LANGUAGES@
342
343
344 ##########################################################################
345 #
346 # Additional platform-specific settings
347 #
348
349 # Name of the "template"
350 PORTNAME= @PORTNAME@
351
352 build_os = @build_os@
353
354 host_tuple = @host@
355 host_os = @host_os@
356 host_cpu = @host_cpu@
357
358 # Make HAVE_IPV6 available for initdb script creation
359 HAVE_IPV6= @HAVE_IPV6@
360
361 # The HP-UX port makefile, for one, needs access to this symbol
362 HAVE_POSIX_SIGNALS= @HAVE_POSIX_SIGNALS@
363
364 # This is mainly for use on FreeBSD, where we have both a.out and elf
365 # systems now.  May be applicable to other systems to?
366 ELF_SYSTEM= @ELF_SYS@
367
368 # Backend stack size limit has to be hard-wired on Windows (it's in bytes)
369 WIN32_STACK_RLIMIT=4194304
370
371 # Set if we have a working win32 crashdump header
372 have_win32_dbghelp = @have_win32_dbghelp@
373
374 # Pull in platform-specific magic
375 include $(top_builddir)/src/Makefile.port
376
377 # Set up rpath if enabled.  By default it will point to our libdir,
378 # but individual Makefiles can force other rpath paths if needed.
379 rpathdir = $(libdir)
380
381 ifeq ($(enable_rpath), yes)
382 LDFLAGS += $(rpath)
383 endif
384
385
386 ##########################################################################
387 #
388 # Some variables needed to find some client interfaces
389
390 ifdef PGXS
391 # some contribs assumes headers and libs are in the source tree...
392 libpq_srcdir = $(includedir)
393 libpq_builddir = $(libdir)
394 else
395 libpq_srcdir = $(top_srcdir)/src/interfaces/libpq
396 libpq_builddir = $(top_builddir)/src/interfaces/libpq
397 endif
398
399 # This macro is for use by libraries linking to libpq.  (Because libpgport
400 # isn't created with the same link flags as libpq, it can't be used.)
401 libpq = -L$(libpq_builddir) -lpq
402
403 # This macro is for use by client executables (not libraries) that use libpq.
404 # We force clients to pull symbols from the non-shared libraries libpgport
405 # and libpgcommon rather than pulling some libpgport symbols from libpq just
406 # because libpq uses those functions too.  This makes applications less
407 # dependent on changes in libpq's usage of pgport.  To do this we link to
408 # pgport before libpq.  This does cause duplicate -lpgport's to appear
409 # on client link lines.
410 ifdef PGXS
411 libpq_pgport = -L$(libdir) -lpgport -lpgcommon $(libpq)
412 else
413 libpq_pgport = -L$(top_builddir)/src/port -lpgport \
414                            -L$(top_builddir)/src/common -lpgcommon $(libpq)
415 endif
416
417
418 submake-libpq:
419         $(MAKE) -C $(libpq_builddir) all
420
421 submake-libpgport:
422         $(MAKE) -C $(top_builddir)/src/port all
423         $(MAKE) -C $(top_builddir)/src/common all
424
425 .PHONY: submake-libpq submake-libpgport
426
427
428 ##########################################################################
429 #
430 # Testing support
431
432 PL_TESTDB = pl_regression
433 CONTRIB_TESTDB = contrib_regression
434 ifneq ($(MODULE_big),)
435   CONTRIB_TESTDB_MODULE = contrib_regression_$(MODULE_big)
436 else 
437   ifneq ($(MODULES),)
438     CONTRIB_TESTDB_MODULE = contrib_regression_$(MODULES)
439   else
440     CONTRIB_TESTDB_MODULE = contrib_regression
441   endif
442 endif
443
444 ifdef NO_LOCALE
445 NOLOCALE += --no-locale
446 endif
447
448 pg_regress_locale_flags = $(if $(ENCODING),--encoding=$(ENCODING)) $(NOLOCALE)
449
450 pg_regress_check = $(top_builddir)/src/test/regress/pg_regress --inputdir=$(srcdir) --temp-install=./tmp_check --top-builddir=$(top_builddir) $(pg_regress_locale_flags)
451 pg_regress_installcheck = $(top_builddir)/src/test/regress/pg_regress --inputdir=$(srcdir) --psqldir='$(PSQLDIR)' $(pg_regress_locale_flags)
452
453 pg_regress_clean_files = results/ regression.diffs regression.out tmp_check/ log/
454
455
456 ##########################################################################
457 #
458 # Customization
459 #
460 # This includes your local customizations if Makefile.custom exists
461 # in the source directory.  This file doesn't exist in the original
462 # distribution so that it doesn't get overwritten when you upgrade.
463 #
464 # NOTE:  Makefile.custom is from the pre-Autoconf days of PostgreSQL.
465 # You are liable to shoot yourself in the foot if you use it without
466 # knowing exactly what you're doing.  The preferred (and more
467 # reliable) method is to communicate what you want to do to the
468 # configure script, and leave the makefiles alone.
469
470 -include $(top_srcdir)/src/Makefile.custom
471
472 ifneq ($(CUSTOM_INSTALL),)
473 INSTALL= $(CUSTOM_INSTALL)
474 endif
475
476 ifneq ($(CUSTOM_CC),)
477   CC= $(CUSTOM_CC)
478 endif
479
480 ifneq ($(CUSTOM_COPT),)
481   COPT= $(CUSTOM_COPT)
482 endif
483
484 ifdef COPT
485    CFLAGS += $(COPT)
486    LDFLAGS += $(COPT)
487 endif
488
489 ifdef PROFILE
490    CFLAGS += $(PROFILE)
491    LDFLAGS += $(PROFILE)
492 endif
493
494
495 ##########################################################################
496 #
497 # substitute implementations of C library routines (see src/port/)
498 # note we already included -L.../src/port in LDFLAGS above
499
500 LIBOBJS = @LIBOBJS@
501
502 LIBS := -lpgport -lpgcommon $(LIBS)
503
504 # to make ws2_32.lib the last library, and always link with shfolder,
505 # so SHGetFolderName isn't picked up from shell32.dll
506 ifeq ($(PORTNAME),win32)
507 LIBS += -lws2_32 -lshfolder
508 endif
509
510 # Not really standard libc functions, used by the backend.
511 TAS         = @TAS@
512
513
514 ##########################################################################
515 #
516 # Global targets and rules
517
518 %.c: %.l
519 ifdef FLEX
520         $(FLEX) $(if $(FLEX_NO_BACKUP),-b) $(FLEXFLAGS) -o'$@' $<
521         @$(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)
522 else
523         @$(missing) flex $< '$@'
524 endif
525
526 %.c: %.y
527         $(if $(BISON_CHECK_CMD),$(BISON_CHECK_CMD))
528 ifdef BISON
529         $(BISON) $(BISONFLAGS) -o $@ $<
530 else
531         @$(missing) bison $< $@
532 endif
533
534 %.i: %.c
535         $(CPP) $(CPPFLAGS) -o $@ $<
536
537 %.gz: %
538         $(GZIP) --best -c $< >$@
539
540 %.bz2: %
541         $(BZIP2) -c $< >$@
542
543 # Direct builds of foo.c -> foo are disabled to avoid generating
544 # *.dSYM junk on Macs.  All builds should normally go through the
545 # foo.c -> foo.o -> foo steps.  This also ensures that dependency
546 # tracking (see below) is used.
547 %: %.c
548
549 ifndef PGXS
550
551 # Remake Makefile.global from Makefile.global.in if the latter
552 # changed. In order to trigger this rule, the including file must
553 # write `include $(top_builddir)/src/Makefile.global', not some
554 # shortcut thereof.
555 $(top_builddir)/src/Makefile.global: $(top_srcdir)/src/Makefile.global.in $(top_builddir)/config.status
556         cd $(top_builddir) && ./config.status src/Makefile.global
557
558 # Remake pg_config.h from pg_config.h.in if the latter changed.
559 # config.status will not change the timestamp on pg_config.h if it
560 # doesn't change, so as to avoid recompiling the entire tree
561 # unnecessarily. Therefore we make config.status update a timestamp file
562 # stamp-h every time it runs, so that we don't trigger this rule every time.
563 # (We do trigger the null rule for stamp-h to pg_config.h every time; so it's
564 # important for that rule to be empty!)
565 #
566 # Of course you need to turn on dependency tracking to get any
567 # dependencies on pg_config.h.
568 $(top_builddir)/src/include/pg_config.h: $(top_builddir)/src/include/stamp-h ;
569
570 $(top_builddir)/src/include/stamp-h: $(top_srcdir)/src/include/pg_config.h.in $(top_builddir)/config.status
571         cd $(top_builddir) && ./config.status src/include/pg_config.h
572
573 # Also remake pg_config_ext.h from pg_config_ext.h.in, same logic as above.
574 $(top_builddir)/src/include/pg_config_ext.h: $(top_builddir)/src/include/stamp-ext-h ;
575
576 $(top_builddir)/src/include/stamp-ext-h: $(top_srcdir)/src/include/pg_config_ext.h.in $(top_builddir)/config.status
577         cd $(top_builddir) && ./config.status src/include/pg_config_ext.h
578
579 # Also remake ecpg_config.h from ecpg_config.h.in if the latter changed, same
580 # logic as above.
581 $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h: $(top_builddir)/src/interfaces/ecpg/include/stamp-h ;
582
583  $(top_builddir)/src/interfaces/ecpg/include/stamp-h: $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h.in $(top_builddir)/config.status
584         cd $(top_builddir) && ./config.status src/interfaces/ecpg/include/ecpg_config.h
585
586 # When configure changes, rerun configure with the same options as
587 # last time. To change configure, you need to run autoconf manually.
588 $(top_builddir)/config.status: $(top_srcdir)/configure
589         cd $(top_builddir) && ./config.status --recheck
590
591 endif # not PGXS
592
593
594 install-strip:
595 # install-strip always uses install-sh, so that strip options can be
596 # passed.
597         $(MAKE) use_install_sh=yes \
598             INSTALL_PROGRAM_ENV="STRIPPROG='$(STRIP)'" \
599             INSTALL_STLIB_ENV="STRIPPROG='$(STRIP_STATIC_LIB)'" \
600             INSTALL_SHLIB_ENV="STRIPPROG='$(STRIP_SHARED_LIB)'" \
601             INSTALL_STRIP_FLAG=-s \
602             install
603
604
605 ##########################################################################
606 #
607 # Recursive make support
608 # ----------------------
609 # Instead of recursing through subdirectories with a for loop or
610 # repeated $(MAKE) -C whatever calls, this is a little smarter: it
611 # allows parallel make across directories and lets make -k and -q work
612 # correctly.
613
614 # We need the $(eval) function and order-only prerequisites, which are
615 # available in GNU make 3.80.  That also happens to be the version
616 # where the .VARIABLES variable was introduced, so this is a simple check.
617 ifndef .VARIABLES
618 $(error GNU make 3.80 or newer is required.  You are using version $(MAKE_VERSION))
619 endif
620
621 # This function is only for internal use below.  It should be called
622 # using $(eval).  It will set up a target so that it recurses into
623 # a given subdirectory.  Note that to avoid a nasty bug in make 3.80,
624 # this function has to avoid using any complicated constructs (like
625 # multiple targets on a line) and also not contain any lines that expand
626 # to more than about 200 bytes.  This is why we make it apply to just one
627 # subdirectory at a time, rather than to a list of subdirectories.
628 # $1: target name, e.g., all
629 # $2: subdir name
630 # $3: target to run in subdir, usually same as $1
631 define _create_recursive_target
632 .PHONY: $(1)-$(2)-recurse
633 $(1): $(1)-$(2)-recurse
634 $(1)-$(2)-recurse:
635         $$(MAKE) -C $(2) $(3)
636 endef
637 # Note that the use of $$ on the last line above is important; we want
638 # $(MAKE) to be evaluated when the rule is run, not when the $(eval) is run
639 # to create the rule.  This is necessary to get make -q working.
640
641 # Call this function in a makefile that needs to recurse into subdirectories.
642 # In the normal case all arguments can be defaulted.
643 # $1: targets to make recursive (defaults to list of standard targets)
644 # $2: list of subdirs (defaults to SUBDIRS variable)
645 # $3: target to run in subdir (defaults to current element of $1)
646 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))))))
647
648 # If a makefile's list of SUBDIRS varies depending on configuration, then
649 # any subdirectories excluded from SUBDIRS should instead be added to
650 # ALWAYS_SUBDIRS, and then it must call recurse_always as well as recurse.
651 # This ensures that distprep, distclean, etc will apply to all subdirectories.
652 # In the normal case all arguments will be defaulted.
653 # $1: targets to make recursive (defaults to standard_always_targets)
654 # $2: list of subdirs (defaults to ALWAYS_SUBDIRS variable)
655 # $3: target to run in subdir (defaults to current element of $1)
656 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))))))
657
658
659 ##########################################################################
660 #
661 # Automatic dependency generation
662 # -------------------------------
663 # When we configure with --enable-depend then we override the default
664 # compilation rule with the magic below. While or after creating the
665 # actual output file we also create a dependency list for the .c file.
666 # Next time we invoke make we will have top-notch information about
667 # whether this file needs to be updated. The dependency files are kept
668 # in the .deps subdirectory of each directory.
669
670 autodepend = @autodepend@
671
672 ifeq ($(autodepend), yes)
673
674 ifndef COMPILE.c
675 COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
676 endif
677
678 DEPDIR = .deps
679
680 ifeq ($(GCC), yes)
681
682 # GCC allows us to create object and dependency file in one invocation.
683 %.o : %.c
684         @if test ! -d $(DEPDIR); then mkdir -p $(DEPDIR); fi
685         $(COMPILE.c) -o $@ $< -MMD -MP -MF $(DEPDIR)/$(*F).Po
686
687 endif # GCC
688
689 # Include all the dependency files generated for the current
690 # directory. Note that make would complain if include was called with
691 # no arguments.
692 Po_files := $(wildcard $(DEPDIR)/*.Po)
693 ifneq (,$(Po_files))
694 include $(Po_files)
695 endif
696
697 # hook for clean-up
698 clean distclean maintainer-clean: clean-deps
699
700 .PHONY: clean-deps
701 clean-deps:
702         @rm -rf $(DEPDIR)
703
704 endif # autodepend
705
706
707 ##########################################################################
708 #
709 # Native language support
710
711 ifeq ($(enable_nls), yes)
712 ifneq (,$(wildcard $(srcdir)/nls.mk))
713
714 include $(top_srcdir)/src/nls-global.mk
715
716 endif # nls.mk
717 endif # enable_nls
718
719
720 ##########################################################################
721 #
722 # Coverage
723
724 # Explanation of involved files:
725 #   foo.c       source file
726 #   foo.o       object file
727 #   foo.gcno    gcov graph (a.k.a. "notes") file, created at compile time
728 #               (by gcc -ftest-coverage)
729 #   foo.gcda    gcov data file, created when the program is run (for
730 #               programs compiled with gcc -fprofile-arcs)
731 #   foo.c.gcov  gcov output file with coverage information, created by
732 #               gcov from foo.gcda (by "make coverage")
733 #   foo.c.gcov.out  stdout captured when foo.c.gcov is created, mildly
734 #               interesting
735 #   lcov.info   lcov tracefile, built from gcda files in one directory,
736 #               later collected by "make coverage-html"
737
738 ifeq ($(enable_coverage), yes)
739
740 # There is a strange interaction between lcov and existing .gcov
741 # output files.  Hence the rm command and the ordering dependency.
742
743 gcda_files := $(wildcard *.gcda)
744
745 lcov.info: $(gcda_files)
746         rm -f *.gcov
747         $(if $^,$(LCOV) -d . -c -o $@ $(LCOVFLAGS))
748
749 %.c.gcov: %.gcda | lcov.info
750         $(GCOV) -b -f -p -o . $(GCOVFLAGS) $*.c >$*.c.gcov.out
751
752 coverage: $(gcda_files:.gcda=.c.gcov) lcov.info
753
754 .PHONY: coverage-html
755 coverage-html: coverage
756         rm -rf coverage
757         mkdir coverage
758         $(GENHTML) --show-details --legend --output-directory=coverage --title=PostgreSQL --num-spaces=4 --prefix=$(abs_top_srcdir) `find . -name lcov.info -print`
759
760
761 # hook for clean-up
762 clean distclean maintainer-clean: clean-coverage
763
764 .PHONY: clean-coverage
765 clean-coverage:
766         rm -rf coverage
767         rm -f *.gcda *.gcno lcov.info *.gcov *.gcov.out
768
769
770 # User-callable target to reset counts between test runs
771 coverage-clean:
772         rm -f `find . -name '*.gcda' -print`
773
774 endif # enable_coverage