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