]> granicus.if.org Git - postgresql/blob - src/Makefile.global.in
Refactor the handling of the various DropStmt variants so that when multiple
[postgresql] / src / Makefile.global.in
1 # -*-makefile-*-
2 # $PostgreSQL: pgsql/src/Makefile.global.in,v 1.241 2008/02/17 16:36:43 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
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_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 have_docbook    = @have_docbook@
191 DOCBOOKSTYLE    = @DOCBOOKSTYLE@
192 COLLATEINDEX    = @COLLATEINDEX@
193
194
195 ##########################################################################
196 #
197 # Programs and flags
198
199 # Compilers
200
201 CPP = @CPP@
202 CPPFLAGS = @CPPFLAGS@
203
204 ifdef PGXS
205 override CPPFLAGS := -I$(includedir_server) -I$(includedir_internal) $(CPPFLAGS)
206 else # not PGXS
207 override CPPFLAGS := -I$(top_srcdir)/src/include $(CPPFLAGS)
208 ifdef VPATH
209 override CPPFLAGS := -I$(top_builddir)/src/include $(CPPFLAGS)
210 endif
211 endif # not PGXS
212
213 CC = @CC@
214 GCC = @GCC@
215 CFLAGS = @CFLAGS@
216
217 # Kind-of compilers
218
219 YACC = @YACC@
220 YFLAGS = @YFLAGS@
221 FLEX = @FLEX@
222 FLEXFLAGS = @FLEXFLAGS@ $(LFLAGS)
223 DTRACE = @DTRACE@
224 DTRACEFLAGS = @DTRACEFLAGS@
225
226 # Linking
227
228 LIBS = @LIBS@
229 LDAP_LIBS_FE = @LDAP_LIBS_FE@
230 LDAP_LIBS_BE = @LDAP_LIBS_BE@
231 OSSP_UUID_LIBS = @OSSP_UUID_LIBS@
232 LD = @LD@
233 with_gnu_ld = @with_gnu_ld@
234 ld_R_works = @ld_R_works@
235 LDFLAGS = @LDFLAGS@
236 LDFLAGS_SL = @LDFLAGS_SL@
237 LDREL = -r
238 LDOUT = -o
239 RANLIB = @RANLIB@
240 X = @EXEEXT@
241
242 # Perl 
243
244 # quoted for pathname with spaces
245 PERL                    = "@PERL@"
246 perl_archlibexp         = @perl_archlibexp@
247 perl_privlibexp         = @perl_privlibexp@
248 perl_useshrplib         = @perl_useshrplib@
249 perl_embed_ldflags      = @perl_embed_ldflags@
250
251 # Miscellaneous
252
253 AWK     = @AWK@
254 LN_S    = @LN_S@
255 MSGFMT  = @MSGFMT@
256 MSGMERGE = @MSGMERGE@
257 PYTHON  = @PYTHON@
258 TAR     = @TAR@
259 XGETTEXT = @XGETTEXT@
260
261 GZIP    = gzip
262 BZIP2   = bzip2
263
264 PL_TESTDB = pl_regression
265 CONTRIB_TESTDB = contrib_regression
266
267 # Installation.
268
269 INSTALL = $(SHELL) $(top_srcdir)/config/install-sh -c
270
271 INSTALL_SCRIPT_MODE     = 755
272 INSTALL_DATA_MODE       = 644
273 INSTALL_PROGRAM = $(INSTALL_PROGRAM_ENV) $(INSTALL) $(INSTALL_STRIP_FLAG)
274 INSTALL_SCRIPT  = $(INSTALL) -m $(INSTALL_SCRIPT_MODE)
275 INSTALL_DATA    = $(INSTALL) -m $(INSTALL_DATA_MODE)
276 INSTALL_STLIB   = $(INSTALL_STLIB_ENV) $(INSTALL_DATA) $(INSTALL_STRIP_FLAG)
277 INSTALL_SHLIB   = $(INSTALL_SHLIB_ENV) $(INSTALL) $(INSTALL_SHLIB_OPTS) $(INSTALL_STRIP_FLAG)
278 # Override in Makefile.port if necessary
279 INSTALL_SHLIB_OPTS = -m 755
280
281 mkinstalldirs   = $(SHELL) $(top_srcdir)/config/mkinstalldirs
282 missing         = $(SHELL) $(top_srcdir)/config/missing
283
284 STRIP           = @STRIP@
285 STRIP_STATIC_LIB = @STRIP_STATIC_LIB@
286 STRIP_SHARED_LIB = @STRIP_SHARED_LIB@
287
288 # Documentation
289
290 JADE    = @JADE@
291 NSGMLS  = @NSGMLS@
292 SGMLSPL = @SGMLSPL@
293
294 # Feature settings
295
296 DEF_PGPORT = @default_port@
297 WANTED_LANGUAGES = @WANTED_LANGUAGES@
298
299
300 ##########################################################################
301 #
302 # Additional platform-specific settings
303 #
304
305 # Name of the "template"
306 PORTNAME= @PORTNAME@
307
308 host_tuple = @host@
309 host_os = @host_os@
310 host_cpu = @host_cpu@
311
312 # Make HAVE_IPV6 available for initdb script creation
313 HAVE_IPV6= @HAVE_IPV6@
314
315 # The HP-UX port makefile, for one, needs access to this symbol
316 HAVE_POSIX_SIGNALS= @HAVE_POSIX_SIGNALS@
317
318 # This is mainly for use on FreeBSD, where we have both a.out and elf
319 # systems now.  May be applicable to other systems to?
320 ELF_SYSTEM= @ELF_SYS@
321
322 # Backend stack size limit has to be hard-wired on Windows (it's in bytes)
323 WIN32_STACK_RLIMIT=4194304
324
325 # Pull in platform-specific magic
326 include $(top_builddir)/src/Makefile.port
327
328 # Set up rpath if enabled.  By default it will point to our libdir,
329 # but individual Makefiles can force other rpath paths if needed.
330 rpathdir = $(libdir)
331
332 ifeq ($(enable_rpath), yes)
333 LDFLAGS += $(rpath)
334 endif
335
336
337 ##########################################################################
338 #
339 # Some variables needed to find some client interfaces
340
341 ifdef PGXS
342 # some contribs assumes headers and libs are in the source tree...
343 libpq_srcdir = $(includedir)
344 libpq_builddir = $(libdir)
345 else
346 libpq_srcdir = $(top_srcdir)/src/interfaces/libpq
347 libpq_builddir = $(top_builddir)/src/interfaces/libpq
348 endif
349
350 # This macro is for use by libraries linking to libpq.  (Because libpgport
351 # isn't created with the same link flags as libpq, it can't be used.)
352 libpq = -L$(libpq_builddir) -lpq
353   
354 # If doing static linking, shared library dependency info isn't available,
355 # so add in the libraries that libpq depends on.
356 ifeq ($(enable_shared), no)
357 libpq += $(filter -lintl -lssl -lcrypto -lkrb5 -lcrypt, $(LIBS)) \
358         $(LDAP_LIBS_FE) $(PTHREAD_LIBS)
359 endif
360
361 # This macro is for use by client executables (not libraries) that use libpq.
362 # We force clients to pull symbols from the non-shared library libpgport 
363 # rather than pulling some libpgport symbols from libpq just because 
364 # libpq uses those functions too.  This makes applications less 
365 # dependent on changes in libpq's usage of pgport.  To do this we link to
366 # pgport before libpq.  This does cause duplicate -lpgport's to appear
367 # on client link lines.
368 ifdef PGXS
369 libpq_pgport = -L$(libdir) -lpgport $(libpq)
370 else
371 libpq_pgport = -L$(top_builddir)/src/port -lpgport $(libpq)
372 endif
373
374
375 submake-libpq:
376         $(MAKE) -C $(libpq_builddir) all
377
378 submake-libpgport:
379         $(MAKE) -C $(top_builddir)/src/port all
380
381 .PHONY: submake-libpq submake-libpgport
382
383
384 ##########################################################################
385 #
386 # Customization
387 #
388 # This includes your local customizations if Makefile.custom exists
389 # in the source directory.  This file doesn't exist in the original
390 # distribution so that it doesn't get overwritten when you upgrade.
391 #
392 # NOTE:  Makefile.custom is from the pre-Autoconf days of PostgreSQL.
393 # You are liable to shoot yourself in the foot if you use it without
394 # knowing exactly what you're doing.  The preferred (and more
395 # reliable) method is to communicate what you want to do to the
396 # configure script, and leave the makefiles alone.
397
398 -include $(top_srcdir)/src/Makefile.custom
399
400 ifneq ($(CUSTOM_INSTALL),)
401 INSTALL= $(CUSTOM_INSTALL)
402 endif
403
404 ifneq ($(CUSTOM_CC),)
405   CC= $(CUSTOM_CC)
406 endif
407
408 ifneq ($(CUSTOM_COPT),)
409   COPT= $(CUSTOM_COPT)
410 endif
411
412 ifdef COPT
413    CFLAGS += $(COPT)
414    LDFLAGS += $(COPT)
415 endif
416
417 ifdef PROFILE
418    CFLAGS += $(PROFILE)
419    LDFLAGS += $(PROFILE)
420 endif
421
422
423 ##########################################################################
424 #
425 # substitute implementations of C library routines (see src/port/)
426
427 LIBOBJS = @LIBOBJS@
428
429 LIBS := -lpgport $(LIBS)
430 # add location of libpgport.a to LDFLAGS
431 ifdef PGXS
432 override LDFLAGS := -L$(libdir) $(LDFLAGS)
433 else
434 override LDFLAGS := -L$(top_builddir)/src/port $(LDFLAGS)
435 endif
436
437 # to make ws2_32.lib the last library, and always link with shfolder,
438 # so SHGetFolderName isn't picked up from shell32.dll
439 ifeq ($(PORTNAME),win32)
440 LIBS += -lws2_32 -lshfolder
441 endif
442
443 # Not really standard libc functions, used by the backend.
444 TAS         = @TAS@
445
446
447 ##########################################################################
448 #
449 # Global targets and rules
450
451 %.gz: %
452         $(GZIP) -f --best $<
453
454 %.bz2: %
455         $(BZIP2) -f $<
456
457 ifeq ($(PORTNAME),win32)
458 # Build rules to add versioninfo resources to win32 binaries
459 WIN32RES += win32ver.o
460 ifeq ($(PGFILESHLIB),1)
461 PGFTYPE=VFT_DLL
462 else
463 PGFTYPE=VFT_APP
464 endif
465 ifneq (,$(PGAPPICON))
466 PGICOSTR=$(subst /,\/,IDI_ICON ICON \"$(top_builddir)/src/port/$(PGAPPICON).ico\")
467 endif
468 win32ver.rc: $(top_builddir)/src/port/win32ver.rc
469         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
470 win32ver.o: $(top_builddir)/src/port/win32ver.rc
471         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
472         windres -i win32ver.rc -o win32ver.o --include-dir=$(top_builddir)/src/include
473         rm -f win32ver.rc
474 endif
475
476 ifndef PGXS
477
478 # Remake Makefile.global from Makefile.global.in if the latter
479 # changed. In order to trigger this rule, the including file must
480 # write `include $(top_builddir)/src/Makefile.global', not some
481 # shortcut thereof.
482 $(top_builddir)/src/Makefile.global: $(top_srcdir)/src/Makefile.global.in $(top_builddir)/config.status
483         cd $(top_builddir) && ./config.status src/Makefile.global
484
485 # Remake pg_config.h from pg_config.h.in if the latter changed.
486 # config.status will not change the timestamp on pg_config.h if it
487 # doesn't change, so as to avoid recompiling the entire tree
488 # unnecessarily. Therefore we make config.status update a timestamp file
489 # stamp-h everytime it runs, so that we don't trigger this rule everytime.
490 # (We do trigger the null rule for stamp-h to pg_config.h everytime; so it's
491 # important for that rule to be null!)
492 #
493 # Of course you need to turn on dependency tracking to get any
494 # dependencies on pg_config.h.
495 $(top_builddir)/src/include/pg_config.h: $(top_builddir)/src/include/stamp-h
496
497 $(top_builddir)/src/include/stamp-h: $(top_srcdir)/src/include/pg_config.h.in $(top_builddir)/config.status
498         cd $(top_builddir) && ./config.status src/include/pg_config.h
499
500 # Also remake ecpg_config.h from ecpg_config.h.in if the latter changed. Values in it can
501 # only change if pg_config.h has changed, so include this file to its dependencies.
502 $(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
503         cd $(top_builddir) && ./config.status src/interfaces/ecpg/include/ecpg_config.h
504
505 # When configure changes, rerun configure with the same options as
506 # last time. To change configure, you need to run autoconf manually.
507 $(top_builddir)/config.status: $(top_srcdir)/configure
508         cd $(top_builddir) && ./config.status --recheck
509
510 endif # not PGXS
511
512
513 install-strip:
514         @$(MAKE) INSTALL_PROGRAM_ENV="STRIPPROG='$(STRIP)'" \
515             INSTALL_STLIB_ENV="STRIPPROG='$(STRIP_STATIC_LIB)'" \
516             INSTALL_SHLIB_ENV="STRIPPROG='$(STRIP_SHARED_LIB)'" \
517             INSTALL_STRIP_FLAG=-s \
518             install
519
520
521 ##########################################################################
522 #
523 # Automatic dependency generation
524 # -------------------------------
525 # When we configure with --enable-depend then we override the default
526 # compilation rule with the magic below. While or after creating the
527 # actual output file we also create a dependency list for the .c file.
528 # Next time we invoke make we will have top-notch information about
529 # whether this file needs to be updated. The dependency files are kept
530 # in the .deps subdirectory of each directory.
531
532 autodepend = @autodepend@
533
534 ifeq ($(autodepend), yes)
535
536 ifndef COMPILE.c
537 COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
538 endif
539
540 DEPDIR = .deps
541
542 ifeq ($(GCC), yes)
543
544 # GCC allows us to create object and dependency file in one invocation.
545 %.o : %.c
546         @if test ! -d $(DEPDIR); then mkdir -p $(DEPDIR); fi
547         $(COMPILE.c) -o $@ $< -MMD -MP -MF $(DEPDIR)/$(*F).Po
548
549 endif # GCC
550
551 # Include all the dependency files generated for the current
552 # directory. List /dev/null as dummy because if the wildcard expands
553 # to nothing then make would complain.
554 -include $(wildcard $(DEPDIR)/*.Po) /dev/null
555
556 # hook for clean-up
557 clean distclean maintainer-clean: clean-deps
558
559 .PHONY: clean-deps
560 clean-deps:
561         @rm -rf $(DEPDIR)
562
563 endif # autodepend
564
565
566 ##########################################################################
567 #
568 # Native language support
569
570 ifeq ($(enable_nls), yes)
571 ifneq (,$(wildcard $(srcdir)/nls.mk))
572
573 include $(top_srcdir)/src/nls-global.mk
574
575 endif # nls.mk
576 endif # enable_nls