]> granicus.if.org Git - postgresql/blob - src/Makefile.global.in
Allow plpython to build on Win32.
[postgresql] / src / Makefile.global.in
1 # -*-makefile-*-
2 # $PostgreSQL: pgsql/src/Makefile.global.in,v 1.198 2004/10/06 09:20:41 momjian 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 prefix := @prefix@
60 exec_prefix := @exec_prefix@
61
62 bindir := @bindir@
63 sbindir := @sbindir@
64
65 libexecdir := @libexecdir@
66 ifeq "$(findstring pgsql, $(libexecdir))" ""
67 ifeq "$(findstring postgres, $(libexecdir))" ""
68 override libexecdir := $(libexecdir)/postgresql
69 endif
70 endif
71
72 datadir := @datadir@
73 ifeq "$(findstring pgsql, $(datadir))" ""
74 ifeq "$(findstring postgres, $(datadir))" ""
75 override datadir := $(datadir)/postgresql
76 endif
77 endif
78
79 sysconfdir := @sysconfdir@
80 ifeq "$(findstring pgsql, $(sysconfdir))" ""
81 ifeq "$(findstring postgres, $(sysconfdir))" ""
82 override sysconfdir := $(sysconfdir)/postgresql
83 endif
84 endif
85
86 libdir := @libdir@
87 pkglibdir = $(libdir)
88 ifeq "$(findstring pgsql, $(pkglibdir))" ""
89 ifeq "$(findstring postgres, $(pkglibdir))" ""
90 override pkglibdir := $(pkglibdir)/postgresql
91 endif
92 endif
93
94 includedir := @includedir@
95 pkgincludedir = $(includedir)
96 ifeq "$(findstring pgsql, $(pkgincludedir))" ""
97 ifeq "$(findstring postgres, $(pkgincludedir))" ""
98 override pkgincludedir := $(pkgincludedir)/postgresql
99 endif
100 endif
101 includedir_server = $(pkgincludedir)/server
102 includedir_internal = $(pkgincludedir)/internal
103
104 mandir := @mandir@
105 sqlmansect_dummy = l
106
107 docdir := @docdir@
108 # docdir can be an empty string to signify --without-docdir
109 ifneq (,$(docdir))
110 ifeq "$(findstring pgsql, $(docdir))" ""
111 ifeq "$(findstring postgres, $(docdir))" ""
112 override docdir := $(docdir)/postgresql
113 endif
114 endif
115 endif
116
117 localedir := @localedir@
118
119 pgxsdir = $(pkglibdir)/pgxs
120
121
122 ##########################################################################
123 #
124 # Features
125 #
126 # Records the choice of the various --enable-xxx and --with-xxx options.
127
128 with_perl       = @with_perl@
129 with_python     = @with_python@
130 with_tcl        = @with_tcl@
131 enable_shared   = @enable_shared@
132 enable_rpath    = @enable_rpath@
133 enable_nls      = @enable_nls@
134 enable_debug    = @enable_debug@
135 enable_thread_safety    = @enable_thread_safety@
136
137 python_includespec      = @python_includespec@
138 python_libspec          = @python_libspec@
139 python_configdir        = @python_configdir@
140 python_version          = @python_version@
141
142 krb_srvtab = @krb_srvtab@
143
144 TCLSH                   = @TCLSH@
145 TCL_LIB_FILE            = @TCL_LIB_FILE@
146 TCL_LIBS                = @TCL_LIBS@
147 TCL_LIB_SPEC            = @TCL_LIB_SPEC@
148 TCL_INCLUDE_SPEC        = @TCL_INCLUDE_SPEC@
149 TCL_SHARED_BUILD        = @TCL_SHARED_BUILD@
150 TCL_SHLIB_LD_LIBS       = @TCL_SHLIB_LD_LIBS@
151
152 TK_LIBS                 = @TK_LIBS@
153 TK_LIB_SPEC             = @TK_LIB_SPEC@
154 TK_XINCLUDES            = @TK_XINCLUDES@
155
156 PTHREAD_CFLAGS          = @PTHREAD_CFLAGS@
157 PTHREAD_LIBS            = @PTHREAD_LIBS@
158
159 have_docbook    = @have_docbook@
160 DOCBOOKSTYLE    = @DOCBOOKSTYLE@
161 COLLATEINDEX    = @COLLATEINDEX@
162
163
164 ##########################################################################
165 #
166 # Programs and flags
167
168 # Compilers
169
170 CPP = @CPP@
171 CPPFLAGS = @CPPFLAGS@
172
173 ifdef PGXS
174 override CPPFLAGS := -I$(includedir_server) -I$(includedir_internal) $(CPPFLAGS)
175 else # not PGXS
176 override CPPFLAGS := -I$(top_srcdir)/src/include $(CPPFLAGS)
177 ifdef VPATH
178 override CPPFLAGS := -I$(top_builddir)/src/include $(CPPFLAGS)
179 endif
180 endif # not PGXS
181
182 CC = @CC@
183 GCC = @GCC@
184 CFLAGS = @CFLAGS@
185 ifeq ($(GCC), yes)
186   CFLAGS += -Wall -Wmissing-prototypes -Wmissing-declarations
187 endif
188
189 # Kind-of compilers
190
191 YACC = @YACC@
192 YFLAGS = @YFLAGS@
193 FLEX = @FLEX@
194 FLEXFLAGS = @FLEXFLAGS@ $(LFLAGS)
195
196 # Linking
197
198 LIBS = @LIBS@
199 LD = @LD@
200 with_gnu_ld = @with_gnu_ld@
201 ld_R_works = @ld_R_works@
202 LDFLAGS = @LDFLAGS@
203 LDREL = -r
204 LDOUT = -o
205 RANLIB = @RANLIB@
206 LORDER = @LORDER@
207 X = @EXEEXT@
208
209 # Perl 
210
211 # quoted for pathname with spaces
212 PERL                    = "@PERL@"
213 perl_archlibexp         = @perl_archlibexp@
214 perl_privlibexp         = @perl_privlibexp@
215 perl_useshrplib         = @perl_useshrplib@
216 perl_embed_ldflags      = @perl_embed_ldflags@
217
218 # Miscellaneous
219
220 AWK     = @AWK@
221 LN_S    = @LN_S@
222 MSGFMT  = @MSGFMT@
223 MSGMERGE = @MSGMERGE@
224 PYTHON  = @PYTHON@
225 TAR     = @TAR@
226 XGETTEXT = @XGETTEXT@
227
228 GZIP    = gzip
229 BZIP2   = bzip2
230
231 # Installation.
232
233 INSTALL = $(SHELL) $(top_srcdir)/config/install-sh -c
234
235 INSTALL_PROGRAM = $(INSTALL_PROGRAM_ENV) $(INSTALL) $(INSTALL_STRIP_FLAG)
236 INSTALL_SCRIPT  = $(INSTALL) -m 755
237 INSTALL_DATA    = $(INSTALL) -m 644
238 INSTALL_STLIB   = $(INSTALL_STLIB_ENV) $(INSTALL_DATA) $(INSTALL_STRIP_FLAG)
239 INSTALL_SHLIB   = $(INSTALL_SHLIB_ENV) $(INSTALL) $(INSTALL_SHLIB_OPTS) $(INSTALL_STRIP_FLAG)
240 # Override in Makefile.port if necessary
241 INSTALL_SHLIB_OPTS = -m 755
242
243 mkinstalldirs   = $(SHELL) $(top_srcdir)/config/mkinstalldirs
244 missing         = $(SHELL) $(top_srcdir)/config/missing
245
246 STRIP           = @STRIP@
247 STRIP_STATIC_LIB = @STRIP_STATIC_LIB@
248 STRIP_SHARED_LIB = @STRIP_SHARED_LIB@
249
250 # Documentation
251
252 JADE    = @JADE@
253 NSGMLS  = @NSGMLS@
254 SGMLSPL = @SGMLSPL@
255
256 # Feature settings
257
258 DEF_PGPORT = @default_port@
259 WANTED_LANGUAGES = @WANTED_LANGUAGES@
260
261
262 ##########################################################################
263 #
264 # Additional platform-specific settings
265 #
266
267 # Name of the "template"
268 PORTNAME= @PORTNAME@
269
270 host_tuple = @host@
271 host_os = @host_os@
272 host_cpu = @host_cpu@
273
274 # Make HAVE_IPV6 available for initdb script creation
275 HAVE_IPV6= @HAVE_IPV6@
276
277 # The HP-UX port makefile, for one, needs access to this symbol
278 HAVE_POSIX_SIGNALS= @HAVE_POSIX_SIGNALS@
279
280 # This is mainly for use on FreeBSD, where we have both a.out and elf
281 # systems now.  May be applicable to other systems to?
282 ELF_SYSTEM= @ELF_SYS@
283
284 # Pull in platform-specific magic
285 include $(top_builddir)/src/Makefile.port
286
287 ifeq ($(enable_rpath), yes)
288 LDFLAGS += $(rpath)
289 endif
290
291
292 ##########################################################################
293 #
294 # Some variables needed to find some client interfaces
295
296 ifdef PGXS
297 # some contribs assumes headers and libs are in the source tree...
298 libpq_srcdir = $(includedir)
299 libpq_builddir = $(libdir)
300 else
301 libpq_srcdir = $(top_srcdir)/src/interfaces/libpq
302 libpq_builddir = $(top_builddir)/src/interfaces/libpq
303 endif
304
305 libpq = -L$(libpq_builddir) -lpq
306
307 submake-libpq:
308         $(MAKE) -C $(libpq_builddir) all
309
310 submake-libpgport:
311         $(MAKE) -C $(top_builddir)/src/port all
312
313 .PHONY: submake-libpq submake-libpgport
314
315
316 ##########################################################################
317 #
318 # Customization
319 #
320 # This includes your local customizations if Makefile.custom exists
321 # in the source directory.  This file doesn't exist in the original
322 # distribution so that it doesn't get overwritten when you upgrade.
323 #
324 # NOTE:  Makefile.custom is from the pre-Autoconf days of PostgreSQL.
325 # You are liable to shoot yourself in the foot if you use it without
326 # knowing exactly what you're doing.  The preferred (and more
327 # reliable) method is to communicate what you want to do to the
328 # configure script, and leave the makefiles alone.
329
330 -include $(top_srcdir)/src/Makefile.custom
331
332 ifneq ($(CUSTOM_INSTALL),)
333 INSTALL= $(CUSTOM_INSTALL)
334 endif
335
336 ifneq ($(CUSTOM_CC),)
337   CC= $(CUSTOM_CC)
338 endif
339
340 ifneq ($(CUSTOM_COPT),)
341   COPT= $(CUSTOM_COPT)
342 endif
343
344 ifdef COPT
345    CFLAGS+= $(COPT)
346    LDFLAGS+= $(COPT)
347 endif
348
349 ifdef PROFILE
350    CFLAGS+= $(PROFILE)
351    LDFLAGS+= $(PROFILE)
352 endif
353
354
355 ##########################################################################
356 #
357 # substitute implementations of the C library
358
359 LIBOBJS = @LIBOBJS@ dirmod.o exec.o noblock.o path.o pipe.o pgsleep.o pgstrcasecmp.o sprompt.o thread.o
360
361 ifneq (,$(LIBOBJS))
362 LIBS := -lpgport $(LIBS)
363 ifdef PGXS
364 # where libpgport.a is installed
365 override LDFLAGS := -L$(libdir) $(LDFLAGS)
366 else
367 override LDFLAGS := -L$(top_builddir)/src/port $(LDFLAGS)
368 endif
369 endif
370
371 # to make ws2_32.lib the last library
372 ifeq ($(PORTNAME),win32)
373 LIBS += -lws2_32
374 endif
375
376 # Not really standard libc functions, used by the backend.
377 TAS         = @TAS@
378
379
380 ##########################################################################
381 #
382 # Global targets and rules
383
384 %.gz: %
385         $(GZIP) -f --best $<
386
387 %.bz2: %
388         $(BZIP2) -f $<
389
390 ifeq ($(PORTNAME),win32)
391 # Build rules to add versioninfo resources to win32 binaries
392 WIN32RES += win32ver.o
393 ifeq ($(PGFILESHLIB),1)
394 PGFTYPE=VFT_DLL
395 else
396 PGFTYPE=VFT_APP
397 endif
398 ifneq (,$(PGAPPICON))
399 PGICOSTR=$(subst /,\/,IDI_ICON ICON \"$(top_builddir)/src/port/$(PGAPPICON).ico\")
400 endif
401 win32ver.rc: $(top_builddir)/src/port/win32ver.rc
402         sed -e "s;FILEDESC;$(PGFILEDESC);" -e "s/VFT_APP/$(PGFTYPE)/" -e "s/_ICO_/$(PGICOSTR)/" $(top_builddir)/src/port/win32ver.rc > win32ver.rc      
403 win32ver.o: win32ver.rc
404         windres -i win32ver.rc -o win32ver.o --include-dir=$(top_builddir)/src/include
405         rm -f win32ver.rc
406 endif
407
408 ifndef PGXS
409
410 # Remake Makefile.global from Makefile.global.in if the latter
411 # changed. In order to trigger this rule, the including file must
412 # write `include $(top_builddir)/src/Makefile.global', not some
413 # shortcut thereof.
414 $(top_builddir)/src/Makefile.global: $(top_srcdir)/src/Makefile.global.in $(top_builddir)/config.status
415         cd $(top_builddir) && ./config.status src/Makefile.global
416
417 # Remake pg_config.h from pg_config.h.in if the latter changed.
418 # config.status will not change the timestamp on pg_config.h if it
419 # doesn't change, so as to avoid recompiling the entire tree
420 # unnecessarily. Therefore we make config.status update a timestamp file
421 # stamp-h everytime it runs, so that we don't trigger this rule everytime.
422 # (We do trigger the null rule for stamp-h to pg_config.h everytime; so it's
423 # important for that rule to be null!)
424 #
425 # Of course you need to turn on dependency tracking to get any
426 # dependencies on pg_config.h.
427 $(top_builddir)/src/include/pg_config.h: $(top_builddir)/src/include/stamp-h
428
429 $(top_builddir)/src/include/stamp-h: $(top_srcdir)/src/include/pg_config.h.in $(top_builddir)/config.status
430         cd $(top_builddir) && ./config.status src/include/pg_config.h
431
432 # When configure changes, rerun configure with the same options as
433 # last time. To change configure, you need to run autoconf manually.
434 $(top_builddir)/config.status: $(top_srcdir)/configure
435         cd $(top_builddir) && ./config.status --recheck
436
437 endif # not PGXS
438
439
440 install-strip:
441         @$(MAKE) INSTALL_PROGRAM_ENV="STRIPPROG='$(STRIP)'" \
442             INSTALL_STLIB_ENV="STRIPPROG='$(STRIP_STATIC_LIB)'" \
443             INSTALL_SHLIB_ENV="STRIPPROG='$(STRIP_SHARED_LIB)'" \
444             INSTALL_STRIP_FLAG=-s \
445             install
446
447
448 ##########################################################################
449 #
450 # Automatic dependency generation
451 # -------------------------------
452 # When we configure with --enable-depend then we override the default
453 # compilation rule with the magic below. While or after creating the
454 # actual output file we also create a dependency list for the .c file.
455 # Next time we invoke make we will have top-notch information about
456 # whether this file needs to be updated. The dependency files are kept
457 # in the .deps subdirectory of each directory.
458 #
459 # The sed command is necessary to post-process the dependency file:
460 # Each dependency file becomes a target of its own, without
461 # dependencies or commands. This is because if you happen to remove a
462 # file that is a dependency (say, you rename a header file) the
463 # dependency would point to a non-existing file and make would fail.
464 # But if the file is listed as a target of its own, without
465 # prerequisites and commands, and doesn't exist then make will
466 # consider it updated. (That in turn also has the nice side effect
467 # that make will update all files that depended on the now removed
468 # file.)
469
470 autodepend = @autodepend@
471
472 ifeq ($(autodepend), yes)
473
474 ifndef COMPILE.c
475 COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
476 endif
477
478 DEPDIR = .deps
479 df = $(DEPDIR)/$(*F)
480
481 # This converts a .d file in the current directory to a .P file in the .deps
482 # subdirectory, with the dummy targets as explained above.
483 define postprocess-depend
484 @if test ! -d $(DEPDIR); then mkdir $(DEPDIR); fi
485 @cp $*.d $(df).P
486 @sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
487      -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $(df).P
488 @rm -f $*.d
489 endef
490
491 ifeq ($(GCC), yes)
492
493 # GCC allows us to create object and dependency file in one invocation.
494 %.o : %.c
495         $(COMPILE.c) -o $@ $< -MMD
496         $(postprocess-depend)
497
498 endif # GCC
499
500 # Include all the dependency files generated for the current
501 # directory. List /dev/null as dummy because if the wildcard expands
502 # to nothing then make would complain.
503 -include $(wildcard $(DEPDIR)/*.P) /dev/null
504
505 # hook for clean-up
506 clean distclean maintainer-clean: clean-deps
507
508 .PHONY: clean-deps
509 clean-deps:
510         @rm -rf $(DEPDIR) *.d
511
512 endif # autodepend
513
514
515 ##########################################################################
516 #
517 # Native language support
518
519 ifeq ($(enable_nls), yes)
520 ifneq (,$(wildcard $(srcdir)/nls.mk))
521
522 include $(top_srcdir)/src/nls-global.mk
523
524 endif # nls.mk
525 endif # enable_nls