OSDN Git Service

Expand test coverage support to entire tree
[pg-rex/syncrep.git] / src / Makefile.global.in
1 # -*-makefile-*-
2 # $PostgreSQL: pgsql/src/Makefile.global.in,v 1.256 2009/08/07 20:50:22 petere Exp $
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 .PHONY: all install install-strip installdirs uninstall clean distclean maintainer-clean distprep check installcheck maintainer-check coverage
22 .SILENT: installdirs
23
24 # make `all' the default target
25 all:
26
27 # Delete target files if the command fails after it has
28 # started to update the file.
29 .DELETE_ON_ERROR:
30
31 # PostgreSQL version number
32 VERSION = @PACKAGE_VERSION@
33 MAJORVERSION = @PG_MAJORVERSION@
34
35 # Support for VPATH builds
36 vpath_build = @vpath_build@
37 abs_top_srcdir = @abs_top_srcdir@
38
39 ifneq ($(vpath_build),yes)
40 top_srcdir = $(top_builddir)
41 srcdir = .
42 else # vpath_build = yes
43 top_srcdir = $(abs_top_srcdir)
44 srcdir = $(top_srcdir)/$(subdir)
45 VPATH = $(srcdir)
46 endif
47
48 # Saved arguments from configure
49 configure_args = @configure_args@
50
51
52 ##########################################################################
53 #
54 # Installation directories
55 #
56 # These are set by the equivalent --xxxdir configure options.  We
57 # append "postgresql" to some of them, if the string does not already
58 # contain "pgsql" or "postgres", in order to avoid directory clutter.
59 #
60 # In a PGXS build, we cannot use the values inserted into Makefile.global
61 # by configure, since the installation tree may have been relocated.
62 # Instead get the path values from pg_config.
63
64 ifndef PGXS
65
66 # Note that prefix, exec_prefix, and datarootdir aren't defined in a PGXS build;
67 # makefiles may only use the derived variables such as bindir.
68
69 prefix := @prefix@
70 exec_prefix := @exec_prefix@
71 datarootdir := @datarootdir@
72
73 bindir := @bindir@
74
75 datadir := @datadir@
76 ifeq "$(findstring pgsql, $(datadir))" ""
77 ifeq "$(findstring postgres, $(datadir))" ""
78 override datadir := $(datadir)/postgresql
79 endif
80 endif
81
82 sysconfdir := @sysconfdir@
83 ifeq "$(findstring pgsql, $(sysconfdir))" ""
84 ifeq "$(findstring postgres, $(sysconfdir))" ""
85 override sysconfdir := $(sysconfdir)/postgresql
86 endif
87 endif
88
89 libdir := @libdir@
90
91 pkglibdir = $(libdir)
92 ifeq "$(findstring pgsql, $(pkglibdir))" ""
93 ifeq "$(findstring postgres, $(pkglibdir))" ""
94 override pkglibdir := $(pkglibdir)/postgresql
95 endif
96 endif
97
98 includedir := @includedir@
99
100 pkgincludedir = $(includedir)
101 ifeq "$(findstring pgsql, $(pkgincludedir))" ""
102 ifeq "$(findstring postgres, $(pkgincludedir))" ""
103 override pkgincludedir := $(pkgincludedir)/postgresql
104 endif
105 endif
106
107 mandir := @mandir@
108
109 docdir := @docdir@
110 ifeq "$(findstring pgsql, $(docdir))" ""
111 ifeq "$(findstring postgres, $(docdir))" ""
112 override docdir := $(docdir)/postgresql
113 endif
114 endif
115
116 htmldir := @htmldir@
117
118 localedir := @localedir@
119
120 else # PGXS case
121
122 # Extension makefiles should set PG_CONFIG, but older ones might not
123 ifndef PG_CONFIG
124 PG_CONFIG = pg_config
125 endif
126
127 bindir := $(shell $(PG_CONFIG) --bindir)
128 datadir := $(shell $(PG_CONFIG) --sharedir)
129 sysconfdir := $(shell $(PG_CONFIG) --sysconfdir)
130 libdir := $(shell $(PG_CONFIG) --libdir)
131 pkglibdir := $(shell $(PG_CONFIG) --pkglibdir)
132 includedir := $(shell $(PG_CONFIG) --includedir)
133 pkgincludedir := $(shell $(PG_CONFIG) --pkgincludedir)
134 mandir := $(shell $(PG_CONFIG) --mandir)
135 docdir := $(shell $(PG_CONFIG) --docdir)
136 localedir := $(shell $(PG_CONFIG) --localedir)
137
138 endif # PGXS
139
140 # These derived path variables aren't separately configurable.
141
142 includedir_server = $(pkgincludedir)/server
143 includedir_internal = $(pkgincludedir)/internal
144 pgxsdir = $(pkglibdir)/pgxs
145
146
147 ##########################################################################
148 #
149 # Features
150 #
151 # Records the choice of the various --enable-xxx and --with-xxx options.
152
153 with_perl       = @with_perl@
154 with_python     = @with_python@
155 with_tcl        = @with_tcl@
156 with_openssl    = @with_openssl@
157 with_ossp_uuid  = @with_ossp_uuid@
158 with_libxml     = @with_libxml@
159 with_libxslt    = @with_libxslt@
160 with_system_tzdata = @with_system_tzdata@
161 with_zlib       = @with_zlib@
162 enable_shared   = @enable_shared@
163 enable_rpath    = @enable_rpath@
164 enable_nls      = @enable_nls@
165 enable_debug    = @enable_debug@
166 enable_dtrace   = @enable_dtrace@
167 enable_coverage = @enable_coverage@
168 enable_thread_safety    = @enable_thread_safety@
169
170 python_includespec      = @python_includespec@
171 python_libdir           = @python_libdir@
172 python_libspec          = @python_libspec@
173 python_additional_libs  = @python_additional_libs@
174 python_configdir        = @python_configdir@
175 python_version          = @python_version@
176
177 krb_srvtab = @krb_srvtab@
178
179 TCLSH                   = @TCLSH@
180 TCL_LIB_FILE            = @TCL_LIB_FILE@
181 TCL_LIBS                = @TCL_LIBS@
182 TCL_LIB_SPEC            = @TCL_LIB_SPEC@
183 TCL_INCLUDE_SPEC        = @TCL_INCLUDE_SPEC@
184 TCL_SHARED_BUILD        = @TCL_SHARED_BUILD@
185 TCL_SHLIB_LD_LIBS       = @TCL_SHLIB_LD_LIBS@
186
187 PTHREAD_CFLAGS          = @PTHREAD_CFLAGS@
188 PTHREAD_LIBS            = @PTHREAD_LIBS@
189
190
191 ##########################################################################
192 #
193 # Programs and flags
194
195 # Compilers
196
197 CPP = @CPP@
198 CPPFLAGS = @CPPFLAGS@
199
200 ifdef PGXS
201 override CPPFLAGS := -I$(includedir_server) -I$(includedir_internal) $(CPPFLAGS)
202 else # not PGXS
203 override CPPFLAGS := -I$(top_srcdir)/src/include $(CPPFLAGS)
204 ifdef VPATH
205 override CPPFLAGS := -I$(top_builddir)/src/include $(CPPFLAGS)
206 endif
207 endif # not PGXS
208
209 CC = @CC@
210 GCC = @GCC@
211 SUN_STUDIO_CC = @SUN_STUDIO_CC@
212 CFLAGS = @CFLAGS@
213
214 # Kind-of compilers
215
216 BISON = @BISON@
217 BISONFLAGS = @BISONFLAGS@ $(YFLAGS)
218 FLEX = @FLEX@
219 FLEXFLAGS = @FLEXFLAGS@ $(LFLAGS)
220 DTRACE = @DTRACE@
221 DTRACEFLAGS = @DTRACEFLAGS@
222 ZIC = @ZIC@
223
224 # Linking
225
226 AR = @AR@
227 DLLTOOL = @DLLTOOL@
228 DLLWRAP = @DLLWRAP@
229 LIBS = @LIBS@
230 LDAP_LIBS_FE = @LDAP_LIBS_FE@
231 LDAP_LIBS_BE = @LDAP_LIBS_BE@
232 OSSP_UUID_LIBS = @OSSP_UUID_LIBS@
233 LD = @LD@
234 with_gnu_ld = @with_gnu_ld@
235 ld_R_works = @ld_R_works@
236 LDFLAGS = @LDFLAGS@
237 LDFLAGS_SL = @LDFLAGS_SL@
238 LDREL = -r
239 LDOUT = -o
240 RANLIB = @RANLIB@
241 WINDRES = @WINDRES@
242 X = @EXEEXT@
243
244 # Perl 
245
246 ifneq (@PERL@,)
247     # quoted to protect pathname with spaces
248     PERL                = "@PERL@"
249 else
250     PERL                = $(missing) perl
251 endif
252 perl_archlibexp         = @perl_archlibexp@
253 perl_privlibexp         = @perl_privlibexp@
254 perl_useshrplib         = @perl_useshrplib@
255 perl_embed_ldflags      = @perl_embed_ldflags@
256
257 # Miscellaneous
258
259 AWK     = @AWK@
260 LN_S    = @LN_S@
261 MSGFMT  = @MSGFMT@
262 MSGMERGE = @MSGMERGE@
263 PYTHON  = @PYTHON@
264 TAR     = @TAR@
265 XGETTEXT = @XGETTEXT@
266
267 GZIP    = gzip
268 BZIP2   = bzip2
269
270 PL_TESTDB = pl_regression
271 CONTRIB_TESTDB = contrib_regression
272
273 # Installation.
274
275 INSTALL = $(SHELL) $(top_srcdir)/config/install-sh -c
276
277 INSTALL_SCRIPT_MODE     = 755
278 INSTALL_DATA_MODE       = 644
279 INSTALL_PROGRAM = $(INSTALL_PROGRAM_ENV) $(INSTALL) $(INSTALL_STRIP_FLAG)
280 INSTALL_SCRIPT  = $(INSTALL) -m $(INSTALL_SCRIPT_MODE)
281 INSTALL_DATA    = $(INSTALL) -m $(INSTALL_DATA_MODE)
282 INSTALL_STLIB   = $(INSTALL_STLIB_ENV) $(INSTALL_DATA) $(INSTALL_STRIP_FLAG)
283 INSTALL_SHLIB   = $(INSTALL_SHLIB_ENV) $(INSTALL) $(INSTALL_SHLIB_OPTS) $(INSTALL_STRIP_FLAG)
284 # Override in Makefile.port if necessary
285 INSTALL_SHLIB_OPTS = -m 755
286
287 mkinstalldirs   = $(SHELL) $(top_srcdir)/config/mkinstalldirs
288 missing         = $(SHELL) $(top_srcdir)/config/missing
289
290 STRIP           = @STRIP@
291 STRIP_STATIC_LIB = @STRIP_STATIC_LIB@
292 STRIP_SHARED_LIB = @STRIP_SHARED_LIB@
293
294 # Documentation
295
296 have_docbook    = @have_docbook@
297 COLLATEINDEX    = @COLLATEINDEX@
298 DOCBOOKSTYLE    = @DOCBOOKSTYLE@
299 JADE                    = @JADE@
300 NSGMLS                  = @NSGMLS@
301 OSX                             = @OSX@
302 XSLTPROC                = @XSLTPROC@
303
304 # Code coverage
305
306 GCOV = @GCOV@
307 LCOV = @LCOV@
308 GENHTML = @GENHTML@
309
310 ifeq ($(enable_coverage),yes)
311 # ccache loses .gcno files
312 export CCACHE_DISABLE = 1
313 endif
314
315 # Feature settings
316
317 DEF_PGPORT = @default_port@
318 WANTED_LANGUAGES = @WANTED_LANGUAGES@
319
320
321 ##########################################################################
322 #
323 # Additional platform-specific settings
324 #
325
326 # Name of the "template"
327 PORTNAME= @PORTNAME@
328
329 build_os = @build_os@
330
331 host_tuple = @host@
332 host_os = @host_os@
333 host_cpu = @host_cpu@
334
335 # Make HAVE_IPV6 available for initdb script creation
336 HAVE_IPV6= @HAVE_IPV6@
337
338 # The HP-UX port makefile, for one, needs access to this symbol
339 HAVE_POSIX_SIGNALS= @HAVE_POSIX_SIGNALS@
340
341 # This is mainly for use on FreeBSD, where we have both a.out and elf
342 # systems now.  May be applicable to other systems to?
343 ELF_SYSTEM= @ELF_SYS@
344
345 # Backend stack size limit has to be hard-wired on Windows (it's in bytes)
346 WIN32_STACK_RLIMIT=4194304
347
348 # Pull in platform-specific magic
349 include $(top_builddir)/src/Makefile.port
350
351 # Set up rpath if enabled.  By default it will point to our libdir,
352 # but individual Makefiles can force other rpath paths if needed.
353 rpathdir = $(libdir)
354
355 ifeq ($(enable_rpath), yes)
356 LDFLAGS += $(rpath)
357 endif
358
359
360 ##########################################################################
361 #
362 # Some variables needed to find some client interfaces
363
364 ifdef PGXS
365 # some contribs assumes headers and libs are in the source tree...
366 libpq_srcdir = $(includedir)
367 libpq_builddir = $(libdir)
368 else
369 libpq_srcdir = $(top_srcdir)/src/interfaces/libpq
370 libpq_builddir = $(top_builddir)/src/interfaces/libpq
371 endif
372
373 # This macro is for use by libraries linking to libpq.  (Because libpgport
374 # isn't created with the same link flags as libpq, it can't be used.)
375 libpq = -L$(libpq_builddir) -lpq
376   
377 # If doing static linking, shared library dependency info isn't available,
378 # so add in the libraries that libpq depends on.
379 ifeq ($(enable_shared), no)
380 libpq += $(filter -lintl -lssl -lcrypto -lkrb5 -lcrypt, $(LIBS)) \
381         $(LDAP_LIBS_FE) $(PTHREAD_LIBS)
382 endif
383
384 # This macro is for use by client executables (not libraries) that use libpq.
385 # We force clients to pull symbols from the non-shared library libpgport 
386 # rather than pulling some libpgport symbols from libpq just because 
387 # libpq uses those functions too.  This makes applications less 
388 # dependent on changes in libpq's usage of pgport.  To do this we link to
389 # pgport before libpq.  This does cause duplicate -lpgport's to appear
390 # on client link lines.
391 ifdef PGXS
392 libpq_pgport = -L$(libdir) -lpgport $(libpq)
393 else
394 libpq_pgport = -L$(top_builddir)/src/port -lpgport $(libpq)
395 endif
396
397
398 submake-libpq:
399         $(MAKE) -C $(libpq_builddir) all
400
401 submake-libpgport:
402         $(MAKE) -C $(top_builddir)/src/port all
403
404 .PHONY: submake-libpq submake-libpgport
405
406
407 ##########################################################################
408 #
409 # Customization
410 #
411 # This includes your local customizations if Makefile.custom exists
412 # in the source directory.  This file doesn't exist in the original
413 # distribution so that it doesn't get overwritten when you upgrade.
414 #
415 # NOTE:  Makefile.custom is from the pre-Autoconf days of PostgreSQL.
416 # You are liable to shoot yourself in the foot if you use it without
417 # knowing exactly what you're doing.  The preferred (and more
418 # reliable) method is to communicate what you want to do to the
419 # configure script, and leave the makefiles alone.
420
421 -include $(top_srcdir)/src/Makefile.custom
422
423 ifneq ($(CUSTOM_INSTALL),)
424 INSTALL= $(CUSTOM_INSTALL)
425 endif
426
427 ifneq ($(CUSTOM_CC),)
428   CC= $(CUSTOM_CC)
429 endif
430
431 ifneq ($(CUSTOM_COPT),)
432   COPT= $(CUSTOM_COPT)
433 endif
434
435 ifdef COPT
436    CFLAGS += $(COPT)
437    LDFLAGS += $(COPT)
438 endif
439
440 ifdef PROFILE
441    CFLAGS += $(PROFILE)
442    LDFLAGS += $(PROFILE)
443 endif
444
445
446 ##########################################################################
447 #
448 # substitute implementations of C library routines (see src/port/)
449
450 LIBOBJS = @LIBOBJS@
451
452 LIBS := -lpgport $(LIBS)
453 # add location of libpgport.a to LDFLAGS
454 ifdef PGXS
455 override LDFLAGS := -L$(libdir) $(LDFLAGS)
456 else
457 override LDFLAGS := -L$(top_builddir)/src/port $(LDFLAGS)
458 endif
459
460 # to make ws2_32.lib the last library, and always link with shfolder,
461 # so SHGetFolderName isn't picked up from shell32.dll
462 ifeq ($(PORTNAME),win32)
463 LIBS += -lws2_32 -lshfolder
464 endif
465
466 # Not really standard libc functions, used by the backend.
467 TAS         = @TAS@
468
469
470 ##########################################################################
471 #
472 # Global targets and rules
473
474 %.i: %.c
475         $(CPP) $(CPPFLAGS) -o $@ $<
476
477 %.gz: %
478         $(GZIP) -f --best $<
479
480 %.bz2: %
481         $(BZIP2) -f $<
482
483 ifndef PGXS
484
485 # Remake Makefile.global from Makefile.global.in if the latter
486 # changed. In order to trigger this rule, the including file must
487 # write `include $(top_builddir)/src/Makefile.global', not some
488 # shortcut thereof.
489 $(top_builddir)/src/Makefile.global: $(top_srcdir)/src/Makefile.global.in $(top_builddir)/config.status
490         cd $(top_builddir) && ./config.status src/Makefile.global
491
492 # Remake pg_config.h from pg_config.h.in if the latter changed.
493 # config.status will not change the timestamp on pg_config.h if it
494 # doesn't change, so as to avoid recompiling the entire tree
495 # unnecessarily. Therefore we make config.status update a timestamp file
496 # stamp-h everytime it runs, so that we don't trigger this rule everytime.
497 # (We do trigger the null rule for stamp-h to pg_config.h everytime; so it's
498 # important for that rule to be null!)
499 #
500 # Of course you need to turn on dependency tracking to get any
501 # dependencies on pg_config.h.
502 $(top_builddir)/src/include/pg_config.h: $(top_builddir)/src/include/stamp-h
503
504 $(top_builddir)/src/include/stamp-h: $(top_srcdir)/src/include/pg_config.h.in $(top_builddir)/config.status
505         cd $(top_builddir) && ./config.status src/include/pg_config.h
506
507 # Also remake ecpg_config.h from ecpg_config.h.in if the latter changed, same 
508 # logic as above.
509 $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h: $(top_builddir)/src/interfaces/ecpg/include/stamp-h
510
511  $(top_builddir)/src/interfaces/ecpg/include/stamp-h: $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h.in $(top_builddir)/config.status
512         cd $(top_builddir) && ./config.status src/interfaces/ecpg/include/ecpg_config.h
513
514 # When configure changes, rerun configure with the same options as
515 # last time. To change configure, you need to run autoconf manually.
516 $(top_builddir)/config.status: $(top_srcdir)/configure
517         cd $(top_builddir) && ./config.status --recheck
518
519 endif # not PGXS
520
521
522 install-strip:
523         @$(MAKE) INSTALL_PROGRAM_ENV="STRIPPROG='$(STRIP)'" \
524             INSTALL_STLIB_ENV="STRIPPROG='$(STRIP_STATIC_LIB)'" \
525             INSTALL_SHLIB_ENV="STRIPPROG='$(STRIP_SHARED_LIB)'" \
526             INSTALL_STRIP_FLAG=-s \
527             install
528
529
530 ##########################################################################
531 #
532 # Automatic dependency generation
533 # -------------------------------
534 # When we configure with --enable-depend then we override the default
535 # compilation rule with the magic below. While or after creating the
536 # actual output file we also create a dependency list for the .c file.
537 # Next time we invoke make we will have top-notch information about
538 # whether this file needs to be updated. The dependency files are kept
539 # in the .deps subdirectory of each directory.
540
541 autodepend = @autodepend@
542
543 ifeq ($(autodepend), yes)
544
545 ifndef COMPILE.c
546 COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
547 endif
548
549 DEPDIR = .deps
550
551 ifeq ($(GCC), yes)
552
553 # GCC allows us to create object and dependency file in one invocation.
554 %.o : %.c
555         @if test ! -d $(DEPDIR); then mkdir -p $(DEPDIR); fi
556         $(COMPILE.c) -o $@ $< -MMD -MP -MF $(DEPDIR)/$(*F).Po
557
558 endif # GCC
559
560 # Include all the dependency files generated for the current
561 # directory. List /dev/null as dummy because if the wildcard expands
562 # to nothing then make would complain.
563 -include $(wildcard $(DEPDIR)/*.Po) /dev/null
564
565 # hook for clean-up
566 clean distclean maintainer-clean: clean-deps
567
568 .PHONY: clean-deps
569 clean-deps:
570         @rm -rf $(DEPDIR)
571
572 endif # autodepend
573
574
575 ##########################################################################
576 #
577 # Native language support
578
579 ifeq ($(enable_nls), yes)
580 ifneq (,$(wildcard $(srcdir)/nls.mk))
581
582 include $(top_srcdir)/src/nls-global.mk
583
584 endif # nls.mk
585 endif # enable_nls
586
587
588 ##########################################################################
589 #
590 # Coverage
591
592 # Explanation of involved files:
593 #   foo.c       source file
594 #   foo.o       object file
595 #   foo.gcno    gcov graph (a.k.a. "notes") file, created at compile time
596 #               (by gcc -ftest-coverage)
597 #   foo.gcda    gcov data file, created when the program is run (for
598 #               programs compiled with gcc -fprofile-arcs)
599 #   foo.c.gcov  gcov output file with coverage information, created by
600 #               gcov from foo.gcda (by "make coverage")
601 #   foo.c.gcov.out  stdout captured when foo.c.gcov is created, mildly
602 #               interesting
603 #   lcov.info   lcov tracefile, built from gcda files in one directory,
604 #               later collected by "make coverage-html"
605
606 ifeq ($(enable_coverage), yes)
607
608 # There is a strange interaction between lcov and existing .gcov
609 # output files.  Hence the rm command and the ordering dependency.
610
611 gcda_files := $(wildcard *.gcda)
612
613 lcov.info: $(gcda_files)
614         rm -f *.gcov
615         $(if $^,$(LCOV) -d . -c -o $@ $(LCOVFLAGS))
616
617 %.c.gcov: %.gcda | lcov.info
618         $(GCOV) -b -f -p -o . $(GCOVFLAGS) $*.c >$*.c.gcov.out
619
620 coverage: $(gcda_files:.gcda=.c.gcov) lcov.info
621         $(if $(SUBDIRS),for dir in $(SUBDIRS); do $(MAKE) -C $$dir coverage || exit; done)
622
623 .PHONY: coverage-html
624 coverage-html: coverage
625         rm -rf coverage
626         mkdir coverage
627         $(GENHTML) --show-details --legend --output-directory=coverage --title=PostgreSQL --num-spaces=4 --prefix=$(abs_top_srcdir) `find . -name lcov.info -print`
628
629
630 # hook for clean-up
631 clean distclean maintainer-clean: clean-coverage
632
633 .PHONY: clean-coverage
634 clean-coverage:
635         rm -rf coverage
636         rm -f *.gcda *.gcno lcov.info *.gcov *.gcov.out
637
638
639 # User-callable target to reset counts between test runs
640 coverage-clean:
641         rm -f `find . -name '*.gcda' -print`
642
643 endif # enable_coverage