OSDN Git Service

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