mirror of
https://github.com/postgres/postgres.git
synced 2025-04-20 00:42:27 +03:00
Replace useless uses of := by = in makefiles.
This commit is contained in:
parent
d7fee591db
commit
c138b966d4
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# PostgreSQL top level makefile
|
# PostgreSQL top level makefile
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/GNUmakefile.in,v 1.45 2006/08/18 19:58:05 adunstan Exp $
|
# $PostgreSQL: pgsql/GNUmakefile.in,v 1.46 2007/02/09 15:55:57 petere Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
subdir =
|
subdir =
|
||||||
@ -63,9 +63,9 @@ GNUmakefile: GNUmakefile.in $(top_builddir)/config.status
|
|||||||
|
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
distdir := postgresql-$(VERSION)
|
distdir = postgresql-$(VERSION)
|
||||||
dummy := =install=
|
dummy = =install=
|
||||||
garbage := =* "#"* ."#"* *~* *.orig *.rej core postgresql-*
|
garbage = =* "#"* ."#"* *~* *.orig *.rej core postgresql-*
|
||||||
|
|
||||||
dist: $(distdir).tar.gz
|
dist: $(distdir).tar.gz
|
||||||
ifeq ($(split-dist), yes)
|
ifeq ($(split-dist), yes)
|
||||||
@ -77,11 +77,11 @@ dist:
|
|||||||
$(distdir).tar: distdir
|
$(distdir).tar: distdir
|
||||||
$(TAR) chf $@ $(distdir)
|
$(TAR) chf $@ $(distdir)
|
||||||
|
|
||||||
opt_files := \
|
opt_files = \
|
||||||
src/tools src/tutorial \
|
src/tools src/tutorial \
|
||||||
$(addprefix src/pl/, plperl plpython tcl)
|
$(addprefix src/pl/, plperl plpython tcl)
|
||||||
|
|
||||||
docs_files := doc/postgres.tar.gz doc/src doc/TODO.detail
|
docs_files = doc/postgres.tar.gz doc/src doc/TODO.detail
|
||||||
|
|
||||||
postgresql-base-$(VERSION).tar: distdir
|
postgresql-base-$(VERSION).tar: distdir
|
||||||
$(TAR) -c $(addprefix --exclude $(distdir)/, $(docs_files) $(opt_files) src/test) \
|
$(TAR) -c $(addprefix --exclude $(distdir)/, $(docs_files) $(opt_files) src/test) \
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.17 2006/09/11 15:14:46 tgl Exp $
|
# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.18 2007/02/09 15:55:57 petere Exp $
|
||||||
|
|
||||||
MODULE_big = tsearch2
|
MODULE_big = tsearch2
|
||||||
OBJS = dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o \
|
OBJS = dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o \
|
||||||
@ -9,8 +9,8 @@ OBJS = dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o \
|
|||||||
query_util.o query_support.o query_rewrite.o query_gist.o \
|
query_util.o query_support.o query_rewrite.o query_gist.o \
|
||||||
ts_locale.o ts_lexize.o ginidx.o
|
ts_locale.o ts_lexize.o ginidx.o
|
||||||
|
|
||||||
SUBDIRS := snowball ispell wordparser
|
SUBDIRS = snowball ispell wordparser
|
||||||
SUBDIROBJS := $(SUBDIRS:%=%/SUBSYS.o)
|
SUBDIROBJS = $(SUBDIRS:%=%/SUBSYS.o)
|
||||||
|
|
||||||
OBJS += $(SUBDIROBJS)
|
OBJS += $(SUBDIROBJS)
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 1994, Regents of the University of California
|
# Copyright (c) 1994, Regents of the University of California
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/doc/Makefile,v 1.28 2005/12/09 21:19:34 petere Exp $
|
# $PostgreSQL: pgsql/doc/Makefile,v 1.29 2007/02/09 15:55:57 petere Exp $
|
||||||
#
|
#
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -27,14 +27,14 @@ include $(top_builddir)/src/Makefile.global
|
|||||||
|
|
||||||
ifneq ($(wildcard $(srcdir)/postgres.tar.gz),)
|
ifneq ($(wildcard $(srcdir)/postgres.tar.gz),)
|
||||||
ifneq (,$(docdir))
|
ifneq (,$(docdir))
|
||||||
found_html := yes
|
found_html = yes
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq ($(wildcard $(srcdir)/man.tar.gz),)
|
ifneq ($(wildcard $(srcdir)/man.tar.gz),)
|
||||||
# SCO OpenServer's man system is sufficiently different to not bother.
|
# SCO OpenServer's man system is sufficiently different to not bother.
|
||||||
ifneq ($(PORTNAME), sco)
|
ifneq ($(PORTNAME), sco)
|
||||||
found_man := yes
|
found_man = yes
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# PostgreSQL documentation makefile
|
# PostgreSQL documentation makefile
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.94 2007/01/27 22:44:32 momjian Exp $
|
# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.95 2007/02/09 15:55:57 petere Exp $
|
||||||
#
|
#
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -66,7 +66,7 @@ override SPFLAGS += -wall -wno-unused-param -wno-empty
|
|||||||
|
|
||||||
.PHONY: html man draft clean
|
.PHONY: html man draft clean
|
||||||
|
|
||||||
DEFAULTSECTION := $(sqlmansect_dummy)
|
DEFAULTSECTION = $(sqlmansect_dummy)
|
||||||
|
|
||||||
fix_man_xrefs = $(PERL) -npi -e 's{\[XRef to GUC-([A-Z0-9-]*)\]}{($$l = $$1) =~ tr/A-Z-/a-z_/, $$l}ge || s{\[XRef to [A-Z0-9-]*\]}{in the documentation}g'
|
fix_man_xrefs = $(PERL) -npi -e 's{\[XRef to GUC-([A-Z0-9-]*)\]}{($$l = $$1) =~ tr/A-Z-/a-z_/, $$l}ge || s{\[XRef to [A-Z0-9-]*\]}{in the documentation}g'
|
||||||
|
|
||||||
@ -105,7 +105,7 @@ draft:
|
|||||||
@$(MAKE) DRAFT="Y" html
|
@$(MAKE) DRAFT="Y" html
|
||||||
|
|
||||||
|
|
||||||
COLLATEINDEX := LC_ALL=C $(PERL) $(COLLATEINDEX) -f -g
|
COLLATEINDEX = LC_ALL=C $(PERL) $(COLLATEINDEX) -f -g
|
||||||
|
|
||||||
# bookindex.sgml is required so there is a proper index for all output formats
|
# bookindex.sgml is required so there is a proper index for all output formats
|
||||||
bookindex.sgml: HTML.index
|
bookindex.sgml: HTML.index
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# -*-makefile-*-
|
# -*-makefile-*-
|
||||||
# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.232 2006/10/08 17:15:33 tgl Exp $
|
# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.233 2007/02/09 15:55:57 petere Exp $
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# All PostgreSQL makefiles include this file and use the variables it sets,
|
# All PostgreSQL makefiles include this file and use the variables it sets,
|
||||||
@ -341,7 +341,7 @@ endif
|
|||||||
|
|
||||||
# This macro is for use by libraries linking to libpq. (Because libpgport
|
# This macro is for use by libraries linking to libpq. (Because libpgport
|
||||||
# isn't created with the same link flags as libpq, it can't be used.)
|
# isn't created with the same link flags as libpq, it can't be used.)
|
||||||
libpq := -L$(libpq_builddir) -lpq
|
libpq = -L$(libpq_builddir) -lpq
|
||||||
|
|
||||||
# If doing static linking, shared library dependency info isn't available,
|
# If doing static linking, shared library dependency info isn't available,
|
||||||
# so add in the libraries that libpq depends on.
|
# so add in the libraries that libpq depends on.
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
# Copyright (c) 1998, Regents of the University of California
|
# Copyright (c) 1998, Regents of the University of California
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.106 2007/01/07 08:49:31 petere Exp $
|
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.107 2007/02/09 15:55:57 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ ifeq ($(enable_shared), yes)
|
|||||||
SHLIB_LINK := $(filter -L%, $(SHLIB_LINK)) $(filter -L%, $(LDFLAGS)) $(filter-out -L%, $(SHLIB_LINK))
|
SHLIB_LINK := $(filter -L%, $(SHLIB_LINK)) $(filter -L%, $(LDFLAGS)) $(filter-out -L%, $(SHLIB_LINK))
|
||||||
|
|
||||||
# Need a -L-free version of LDFLAGS to use in combination with SHLIB_LINK
|
# Need a -L-free version of LDFLAGS to use in combination with SHLIB_LINK
|
||||||
LDFLAGS_NO_L := $(filter-out -L%, $(LDFLAGS))
|
LDFLAGS_NO_L = $(filter-out -L%, $(LDFLAGS))
|
||||||
|
|
||||||
# Default shlib naming convention used by the majority of platforms
|
# Default shlib naming convention used by the majority of platforms
|
||||||
shlib = lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
shlib = lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
||||||
@ -102,15 +102,15 @@ endif
|
|||||||
|
|
||||||
ifeq ($(PORTNAME), darwin)
|
ifeq ($(PORTNAME), darwin)
|
||||||
ifneq ($(SO_MAJOR_VERSION), 0)
|
ifneq ($(SO_MAJOR_VERSION), 0)
|
||||||
version_link := -compatibility_version $(SO_MAJOR_VERSION) -current_version $(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
version_link = -compatibility_version $(SO_MAJOR_VERSION) -current_version $(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
||||||
endif
|
endif
|
||||||
ifeq ($(DLTYPE), library)
|
ifeq ($(DLTYPE), library)
|
||||||
# linkable library
|
# linkable library
|
||||||
DLSUFFIX := .dylib
|
DLSUFFIX = .dylib
|
||||||
LINK.shared = $(COMPILER) -dynamiclib -install_name $(libdir)/lib$(NAME).$(SO_MAJOR_VERSION)$(DLSUFFIX) $(version_link) $(exported_symbols_list) -multiply_defined suppress
|
LINK.shared = $(COMPILER) -dynamiclib -install_name $(libdir)/lib$(NAME).$(SO_MAJOR_VERSION)$(DLSUFFIX) $(version_link) $(exported_symbols_list) -multiply_defined suppress
|
||||||
else
|
else
|
||||||
# loadable module (default case)
|
# loadable module (default case)
|
||||||
DLSUFFIX := .so
|
DLSUFFIX = .so
|
||||||
LINK.shared = $(COMPILER) -bundle -multiply_defined suppress
|
LINK.shared = $(COMPILER) -bundle -multiply_defined suppress
|
||||||
endif
|
endif
|
||||||
shlib = lib$(NAME).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)$(DLSUFFIX)
|
shlib = lib$(NAME).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)$(DLSUFFIX)
|
||||||
@ -171,7 +171,7 @@ ifeq ($(PORTNAME), hpux)
|
|||||||
# ld can find the same libraries gcc does. Make sure it goes after any
|
# ld can find the same libraries gcc does. Make sure it goes after any
|
||||||
# -L switches provided explicitly.
|
# -L switches provided explicitly.
|
||||||
ifeq ($(GCC), yes)
|
ifeq ($(GCC), yes)
|
||||||
SHLIB_LINK := $(filter -L%, $(SHLIB_LINK)) -L/usr/local/lib $(filter-out -L%, $(SHLIB_LINK))
|
SHLIB_LINK = $(filter -L%, $(SHLIB_LINK)) -L/usr/local/lib $(filter-out -L%, $(SHLIB_LINK))
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
# do this last so above filtering doesn't pull out -L switches in LDFLAGS
|
# do this last so above filtering doesn't pull out -L switches in LDFLAGS
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 1994, Regents of the University of California
|
# Copyright (c) 1994, Regents of the University of California
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.121 2007/01/20 17:16:10 petere Exp $
|
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.122 2007/02/09 15:55:57 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -13,11 +13,11 @@ subdir = src/backend
|
|||||||
top_builddir = ../..
|
top_builddir = ../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
DIRS := access bootstrap catalog parser commands executor lib libpq \
|
DIRS = access bootstrap catalog parser commands executor lib libpq \
|
||||||
main nodes optimizer port postmaster regex rewrite \
|
main nodes optimizer port postmaster regex rewrite \
|
||||||
storage tcop utils $(top_builddir)/src/timezone
|
storage tcop utils $(top_builddir)/src/timezone
|
||||||
|
|
||||||
SUBSYSOBJS := $(DIRS:%=%/SUBSYS.o)
|
SUBSYSOBJS = $(DIRS:%=%/SUBSYS.o)
|
||||||
|
|
||||||
ifeq ($(enable_dtrace), yes)
|
ifeq ($(enable_dtrace), yes)
|
||||||
LOCALOBJS += utils/probes.o
|
LOCALOBJS += utils/probes.o
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
#
|
#
|
||||||
# Makefile for the access methods module
|
# Makefile for the access methods module
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/access/Makefile,v 1.12 2007/01/20 17:16:10 petere Exp $
|
# $PostgreSQL: pgsql/src/backend/access/Makefile,v 1.13 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
subdir = src/backend/access
|
subdir = src/backend/access
|
||||||
top_builddir = ../../..
|
top_builddir = ../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
SUBDIRS := common gist hash heap index nbtree transam gin
|
SUBDIRS = common gist hash heap index nbtree transam gin
|
||||||
SUBDIROBJS := $(SUBDIRS:%=%/SUBSYS.o)
|
SUBDIROBJS = $(SUBDIRS:%=%/SUBSYS.o)
|
||||||
|
|
||||||
all: SUBSYS.o
|
all: SUBSYS.o
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# Makefile for backend/catalog
|
# Makefile for backend/catalog
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/catalog/Makefile,v 1.62 2007/02/06 09:16:08 petere Exp $
|
# $PostgreSQL: pgsql/src/backend/catalog/Makefile,v 1.63 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -26,7 +26,7 @@ SUBSYS.o: $(OBJS)
|
|||||||
# the catalog header files are assembled into postgres.bki. In particular,
|
# the catalog header files are assembled into postgres.bki. In particular,
|
||||||
# indexing.h had better be last, and toasting.h just before it.
|
# indexing.h had better be last, and toasting.h just before it.
|
||||||
|
|
||||||
POSTGRES_BKI_SRCS := $(addprefix $(top_srcdir)/src/include/catalog/,\
|
POSTGRES_BKI_SRCS = $(addprefix $(top_srcdir)/src/include/catalog/,\
|
||||||
pg_proc.h pg_type.h pg_attribute.h pg_class.h pg_autovacuum.h \
|
pg_proc.h pg_type.h pg_attribute.h pg_class.h pg_autovacuum.h \
|
||||||
pg_attrdef.h pg_constraint.h pg_inherits.h pg_index.h pg_operator.h \
|
pg_attrdef.h pg_constraint.h pg_inherits.h pg_index.h pg_operator.h \
|
||||||
pg_opfamily.h pg_opclass.h pg_am.h pg_amop.h pg_amproc.h \
|
pg_opfamily.h pg_opclass.h pg_am.h pg_amop.h pg_amproc.h \
|
||||||
@ -38,7 +38,7 @@ POSTGRES_BKI_SRCS := $(addprefix $(top_srcdir)/src/include/catalog/,\
|
|||||||
toasting.h indexing.h \
|
toasting.h indexing.h \
|
||||||
)
|
)
|
||||||
|
|
||||||
pg_includes := $(sort -I$(top_srcdir)/src/include -I$(top_builddir)/src/include)
|
pg_includes = $(sort -I$(top_srcdir)/src/include -I$(top_builddir)/src/include)
|
||||||
|
|
||||||
# see explanation in ../parser/Makefile
|
# see explanation in ../parser/Makefile
|
||||||
postgres.description: postgres.bki ;
|
postgres.description: postgres.bki ;
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
#
|
#
|
||||||
# Makefile for optimizer
|
# Makefile for optimizer
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/optimizer/Makefile,v 1.12 2007/01/20 17:16:11 petere Exp $
|
# $PostgreSQL: pgsql/src/backend/optimizer/Makefile,v 1.13 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
subdir = src/backend/optimizer
|
subdir = src/backend/optimizer
|
||||||
top_builddir = ../../..
|
top_builddir = ../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
SUBDIRS := geqo path plan prep util
|
SUBDIRS = geqo path plan prep util
|
||||||
SUBDIROBJS := $(SUBDIRS:%=%/SUBSYS.o)
|
SUBDIROBJS = $(SUBDIRS:%=%/SUBSYS.o)
|
||||||
|
|
||||||
all: SUBSYS.o
|
all: SUBSYS.o
|
||||||
|
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
#
|
#
|
||||||
# Makefile for the storage manager subsystem
|
# Makefile for the storage manager subsystem
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/storage/Makefile,v 1.12 2007/01/20 17:16:12 petere Exp $
|
# $PostgreSQL: pgsql/src/backend/storage/Makefile,v 1.13 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
subdir = src/backend/storage
|
subdir = src/backend/storage
|
||||||
top_builddir = ../../..
|
top_builddir = ../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
SUBDIRS := buffer file freespace ipc large_object lmgr page smgr
|
SUBDIRS = buffer file freespace ipc large_object lmgr page smgr
|
||||||
SUBDIROBJS := $(SUBDIRS:%=%/SUBSYS.o)
|
SUBDIROBJS = $(SUBDIRS:%=%/SUBSYS.o)
|
||||||
|
|
||||||
all: SUBSYS.o
|
all: SUBSYS.o
|
||||||
|
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
#
|
#
|
||||||
# Makefile for utils
|
# Makefile for utils
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/Makefile,v 1.24 2006/07/15 03:33:14 tgl Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/Makefile,v 1.25 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
subdir = src/backend/utils
|
subdir = src/backend/utils
|
||||||
top_builddir = ../../..
|
top_builddir = ../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
SUBDIRS := adt cache error fmgr hash init mb misc mmgr resowner sort time
|
SUBDIRS = adt cache error fmgr hash init mb misc mmgr resowner sort time
|
||||||
SUBDIROBJS := $(SUBDIRS:%=%/SUBSYS.o)
|
SUBDIROBJS = $(SUBDIRS:%=%/SUBSYS.o)
|
||||||
|
|
||||||
|
|
||||||
all: SUBSYS.o fmgroids.h
|
all: SUBSYS.o fmgroids.h
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/ascii_and_mic/Makefile,v 1.4 2003/11/29 22:40:02 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/ascii_and_mic/Makefile,v 1.5 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/ascii_and_mic
|
subdir = src/backend/utils/mb/conversion_procs/ascii_and_mic
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := ascii_and_mic
|
NAME = ascii_and_mic
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/cyrillic_and_mic/Makefile,v 1.3 2003/11/29 22:40:04 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/cyrillic_and_mic/Makefile,v 1.4 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/cyrillic_and_mic
|
subdir = src/backend/utils/mb/conversion_procs/cyrillic_and_mic
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := cyrillic_and_mic
|
NAME = cyrillic_and_mic
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_cn_and_mic/Makefile,v 1.3 2003/11/29 22:40:05 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_cn_and_mic/Makefile,v 1.4 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/euc_cn_and_mic
|
subdir = src/backend/utils/mb/conversion_procs/euc_cn_and_mic
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := euc_cn_and_mic
|
NAME = euc_cn_and_mic
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/Makefile,v 1.3 2003/11/29 22:40:06 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/Makefile,v 1.4 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/euc_jp_and_sjis
|
subdir = src/backend/utils/mb/conversion_procs/euc_jp_and_sjis
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := euc_jp_and_sjis
|
NAME = euc_jp_and_sjis
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_kr_and_mic/Makefile,v 1.3 2003/11/29 22:40:07 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_kr_and_mic/Makefile,v 1.4 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/euc_kr_and_mic
|
subdir = src/backend/utils/mb/conversion_procs/euc_kr_and_mic
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := euc_kr_and_mic
|
NAME = euc_kr_and_mic
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_tw_and_big5/Makefile,v 1.3 2003/11/29 22:40:08 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/euc_tw_and_big5/Makefile,v 1.4 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/euc_tw_and_big5
|
subdir = src/backend/utils/mb/conversion_procs/euc_tw_and_big5
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := euc_tw_and_big5
|
NAME = euc_tw_and_big5
|
||||||
|
|
||||||
SRCS += big5.c
|
SRCS += big5.c
|
||||||
OBJS += big5.o
|
OBJS += big5.o
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/latin2_and_win1250/Makefile,v 1.3 2003/11/29 22:40:09 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/latin2_and_win1250/Makefile,v 1.4 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/latin2_and_win1250
|
subdir = src/backend/utils/mb/conversion_procs/latin2_and_win1250
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := latin2_and_win1250
|
NAME = latin2_and_win1250
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/latin_and_mic/Makefile,v 1.3 2003/11/29 22:40:10 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/latin_and_mic/Makefile,v 1.4 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/latin_and_mic
|
subdir = src/backend/utils/mb/conversion_procs/latin_and_mic
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := latin_and_mic
|
NAME = latin_and_mic
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_ascii/Makefile,v 1.3 2003/11/29 22:40:14 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_ascii/Makefile,v 1.4 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_ascii
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_ascii
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_ascii
|
NAME = utf8_and_ascii
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_big5/Makefile,v 1.3 2003/11/29 22:40:15 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_big5/Makefile,v 1.4 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_big5
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_big5
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_big5
|
NAME = utf8_and_big5
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic/Makefile,v 1.3 2003/11/29 22:40:16 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic/Makefile,v 1.4 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_cyrillic
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_cyrillic
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_cyrillic
|
NAME = utf8_and_cyrillic
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn/Makefile,v 1.3 2003/11/29 22:40:17 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn/Makefile,v 1.4 2007/02/09 15:55:58 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_euc_cn
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_euc_cn
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_euc_cn
|
NAME = utf8_and_euc_cn
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp/Makefile,v 1.3 2003/11/29 22:40:19 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp/Makefile,v 1.4 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_euc_jp
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_euc_jp
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_euc_jp
|
NAME = utf8_and_euc_jp
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr/Makefile,v 1.3 2003/11/29 22:40:20 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr/Makefile,v 1.4 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_euc_kr
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_euc_kr
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_euc_kr
|
NAME = utf8_and_euc_kr
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw/Makefile,v 1.3 2003/11/29 22:40:21 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw/Makefile,v 1.4 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_euc_tw
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_euc_tw
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_euc_tw
|
NAME = utf8_and_euc_tw
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_gb18030/Makefile,v 1.3 2003/11/29 22:40:23 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_gb18030/Makefile,v 1.4 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_gb18030
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_gb18030
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_gb18030
|
NAME = utf8_and_gb18030
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_gbk/Makefile,v 1.3 2003/11/29 22:40:24 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_gbk/Makefile,v 1.4 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_gbk
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_gbk
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_gbk
|
NAME = utf8_and_gbk
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859/Makefile,v 1.3 2003/11/29 22:40:32 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859/Makefile,v 1.4 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_iso8859
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_iso8859
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_iso8859
|
NAME = utf8_and_iso8859
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/Makefile,v 1.3 2003/11/29 22:40:33 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/Makefile,v 1.4 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_iso8859_1
|
NAME = utf8_and_iso8859_1
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_johab/Makefile,v 1.3 2003/11/29 22:40:35 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_johab/Makefile,v 1.4 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_johab
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_johab
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_johab
|
NAME = utf8_and_johab
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_sjis/Makefile,v 1.3 2003/11/29 22:40:37 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_sjis/Makefile,v 1.4 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_sjis
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_sjis
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_sjis
|
NAME = utf8_and_sjis
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_uhc/Makefile,v 1.3 2003/11/29 22:40:39 pgsql Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_uhc/Makefile,v 1.4 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_uhc
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_uhc
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_uhc
|
NAME = utf8_and_uhc
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win/Makefile,v 1.1 2006/02/18 16:15:22 petere Exp $
|
# $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win/Makefile,v 1.2 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
subdir = src/backend/utils/mb/conversion_procs/utf8_and_win
|
subdir = src/backend/utils/mb/conversion_procs/utf8_and_win
|
||||||
top_builddir = ../../../../../..
|
top_builddir = ../../../../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
NAME := utf8_and_win
|
NAME = utf8_and_win
|
||||||
|
|
||||||
include $(srcdir)/../proc.mk
|
include $(srcdir)/../proc.mk
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
||||||
# Portions Copyright (c) 1994, Regents of the University of California
|
# Portions Copyright (c) 1994, Regents of the University of California
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/bin/Makefile,v 1.49 2007/01/20 17:16:15 petere Exp $
|
# $PostgreSQL: pgsql/src/bin/Makefile,v 1.50 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -13,7 +13,7 @@ subdir = src/bin
|
|||||||
top_builddir = ../..
|
top_builddir = ../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
DIRS := initdb ipcclean pg_ctl pg_dump \
|
DIRS = initdb ipcclean pg_ctl pg_dump \
|
||||||
psql scripts pg_config pg_controldata pg_resetxlog
|
psql scripts pg_config pg_controldata pg_resetxlog
|
||||||
ifeq ($(PORTNAME), win32)
|
ifeq ($(PORTNAME), win32)
|
||||||
DIRS+=pgevent
|
DIRS+=pgevent
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 1994, Regents of the University of California
|
# Copyright (c) 1994, Regents of the University of California
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/interfaces/Makefile,v 1.54 2007/01/20 17:16:15 petere Exp $
|
# $PostgreSQL: pgsql/src/interfaces/Makefile,v 1.55 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -12,9 +12,9 @@ subdir = src/interfaces
|
|||||||
top_builddir = ../..
|
top_builddir = ../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
DIRS := libpq ecpg
|
DIRS = libpq ecpg
|
||||||
|
|
||||||
ALLDIRS := $(DIRS)
|
ALLDIRS = $(DIRS)
|
||||||
|
|
||||||
all install installdirs uninstall distprep:
|
all install installdirs uninstall distprep:
|
||||||
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
|
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $PostgreSQL: pgsql/src/interfaces/ecpg/test/Makefile,v 1.65 2007/01/21 09:23:29 petere Exp $
|
# $PostgreSQL: pgsql/src/interfaces/ecpg/test/Makefile,v 1.66 2007/02/09 15:55:59 petere Exp $
|
||||||
|
|
||||||
subdir = src/interfaces/ecpg/test
|
subdir = src/interfaces/ecpg/test
|
||||||
top_builddir = ../../../..
|
top_builddir = ../../../..
|
||||||
@ -12,7 +12,7 @@ TEMP_PORT = 5$(DEF_PGPORT)
|
|||||||
MULTIBYTE = SQL_ASCII
|
MULTIBYTE = SQL_ASCII
|
||||||
|
|
||||||
# locale
|
# locale
|
||||||
NOLOCALE :=
|
NOLOCALE =
|
||||||
ifdef NO_LOCALE
|
ifdef NO_LOCALE
|
||||||
NOLOCALE += --no-locale
|
NOLOCALE += --no-locale
|
||||||
endif
|
endif
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 1994, Regents of the University of California
|
# Copyright (c) 1994, Regents of the University of California
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/pl/Makefile,v 1.24 2007/01/20 17:16:17 petere Exp $
|
# $PostgreSQL: pgsql/src/pl/Makefile,v 1.25 2007/02/09 15:55:59 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -12,7 +12,7 @@ subdir = src/pl
|
|||||||
top_builddir = ../..
|
top_builddir = ../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
DIRS := plpgsql
|
DIRS = plpgsql
|
||||||
|
|
||||||
ifeq ($(with_perl), yes)
|
ifeq ($(with_perl), yes)
|
||||||
DIRS += plperl
|
DIRS += plperl
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Makefile for PL/Perl
|
# Makefile for PL/Perl
|
||||||
# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.28 2006/07/21 00:24:04 tgl Exp $
|
# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.29 2007/02/09 15:56:00 petere Exp $
|
||||||
|
|
||||||
subdir = src/pl/plperl
|
subdir = src/pl/plperl
|
||||||
top_builddir = ../../..
|
top_builddir = ../../..
|
||||||
@ -17,9 +17,9 @@ endif
|
|||||||
ifneq (,$(findstring yes, $(shared_libperl)$(allow_nonpic_in_shlib)))
|
ifneq (,$(findstring yes, $(shared_libperl)$(allow_nonpic_in_shlib)))
|
||||||
|
|
||||||
ifeq ($(PORTNAME), win32)
|
ifeq ($(PORTNAME), win32)
|
||||||
perl_archlibexp := $(subst \,/,$(perl_archlibexp))
|
perl_archlibexp = $(subst \,/,$(perl_archlibexp))
|
||||||
perl_privlibexp := $(subst \,/,$(perl_privlibexp))
|
perl_privlibexp = $(subst \,/,$(perl_privlibexp))
|
||||||
perl_embed_ldflags := -L$(perl_archlibexp)/CORE -lperl58
|
perl_embed_ldflags = -L$(perl_archlibexp)/CORE -lperl58
|
||||||
override CPPFLAGS += -DPLPERL_HAVE_UID_GID
|
override CPPFLAGS += -DPLPERL_HAVE_UID_GID
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# Makefile for the plpgsql shared object
|
# Makefile for the plpgsql shared object
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/pl/plpgsql/src/Makefile,v 1.29 2006/03/07 01:03:12 tgl Exp $
|
# $PostgreSQL: pgsql/src/pl/plpgsql/src/Makefile,v 1.30 2007/02/09 15:56:00 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -17,7 +17,7 @@ SO_MINOR_VERSION= 0
|
|||||||
|
|
||||||
override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
|
override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
|
||||||
SHLIB_LINK = $(filter -lintl, $(LIBS)) $(BE_DLLLIBS)
|
SHLIB_LINK = $(filter -lintl, $(LIBS)) $(BE_DLLLIBS)
|
||||||
rpath :=
|
rpath =
|
||||||
|
|
||||||
OBJS = pl_gram.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o
|
OBJS = pl_gram.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.26 2006/07/21 00:24:04 tgl Exp $
|
# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.27 2007/02/09 15:56:00 petere Exp $
|
||||||
|
|
||||||
subdir = src/pl/plpython
|
subdir = src/pl/plpython
|
||||||
top_builddir = ../../..
|
top_builddir = ../../..
|
||||||
@ -17,15 +17,15 @@ endif
|
|||||||
# and we have to remove -lpython from the link since we are building our own
|
# and we have to remove -lpython from the link since we are building our own
|
||||||
ifeq ($(PORTNAME), win32)
|
ifeq ($(PORTNAME), win32)
|
||||||
shared_libpython = yes
|
shared_libpython = yes
|
||||||
python_includespec := $(subst \,/,$(python_includespec))
|
python_includespec = $(subst \,/,$(python_includespec))
|
||||||
override python_libspec :=
|
override python_libspec =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Darwin (OS X) has its own ideas about how to do this.
|
# Darwin (OS X) has its own ideas about how to do this.
|
||||||
ifeq ($(PORTNAME), darwin)
|
ifeq ($(PORTNAME), darwin)
|
||||||
shared_libpython = yes
|
shared_libpython = yes
|
||||||
override python_libspec := -framework Python
|
override python_libspec = -framework Python
|
||||||
override python_additional_libs :=
|
override python_additional_libs =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# If we don't have a shared library and the platform doesn't allow it
|
# If we don't have a shared library and the platform doesn't allow it
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
# for use only by the backend binaries
|
# for use only by the backend binaries
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $PostgreSQL: pgsql/src/port/Makefile,v 1.33 2006/07/14 16:45:43 tgl Exp $
|
# $PostgreSQL: pgsql/src/port/Makefile,v 1.34 2007/02/09 15:56:00 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ override CPPFLAGS := -I$(top_builddir)/src/port -DFRONTEND $(CPPFLAGS)
|
|||||||
LIBS += $(PTHREAD_LIBS)
|
LIBS += $(PTHREAD_LIBS)
|
||||||
|
|
||||||
# Replace all object files so they use FRONTEND define
|
# Replace all object files so they use FRONTEND define
|
||||||
LIBOBJS_SRV := $(LIBOBJS:%.o=%_srv.o)
|
LIBOBJS_SRV = $(LIBOBJS:%.o=%_srv.o)
|
||||||
|
|
||||||
all: libpgport.a libpgport_srv.a
|
all: libpgport.a libpgport_srv.a
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
||||||
# Portions Copyright (c) 1994, Regents of the University of California
|
# Portions Copyright (c) 1994, Regents of the University of California
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.65 2007/01/31 19:38:50 neilc Exp $
|
# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.66 2007/02/09 15:56:00 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -14,7 +14,7 @@ subdir = src/test/regress
|
|||||||
top_builddir = ../../..
|
top_builddir = ../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
contribdir := $(top_builddir)/contrib
|
contribdir = $(top_builddir)/contrib
|
||||||
|
|
||||||
# port number for temp-installation test postmaster
|
# port number for temp-installation test postmaster
|
||||||
TEMP_PORT = 5$(DEF_PGPORT)
|
TEMP_PORT = 5$(DEF_PGPORT)
|
||||||
@ -26,13 +26,13 @@ PSQLDIR = $(bindir)
|
|||||||
MULTIBYTE = SQL_ASCII
|
MULTIBYTE = SQL_ASCII
|
||||||
|
|
||||||
# maximum simultaneous connections for parallel tests
|
# maximum simultaneous connections for parallel tests
|
||||||
MAXCONNOPT :=
|
MAXCONNOPT =
|
||||||
ifdef MAX_CONNECTIONS
|
ifdef MAX_CONNECTIONS
|
||||||
MAXCONNOPT += --max-connections=$(MAX_CONNECTIONS)
|
MAXCONNOPT += --max-connections=$(MAX_CONNECTIONS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# locale
|
# locale
|
||||||
NOLOCALE :=
|
NOLOCALE =
|
||||||
ifdef NO_LOCALE
|
ifdef NO_LOCALE
|
||||||
NOLOCALE += --no-locale
|
NOLOCALE += --no-locale
|
||||||
endif
|
endif
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# Makefile for the timezone library
|
# Makefile for the timezone library
|
||||||
|
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.24 2006/07/25 03:51:22 tgl Exp $
|
# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.25 2007/02/09 15:56:00 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -12,8 +12,6 @@ subdir = src/timezone
|
|||||||
top_builddir = ../..
|
top_builddir = ../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
override CPPFLAGS := $(CPPFLAGS)
|
|
||||||
|
|
||||||
# files to build into backend
|
# files to build into backend
|
||||||
OBJS= localtime.o strftime.o pgtz.o
|
OBJS= localtime.o strftime.o pgtz.o
|
||||||
|
|
||||||
@ -21,9 +19,9 @@ OBJS= localtime.o strftime.o pgtz.o
|
|||||||
ZICOBJS= zic.o ialloc.o scheck.o localtime.o
|
ZICOBJS= zic.o ialloc.o scheck.o localtime.o
|
||||||
|
|
||||||
# timezone data files
|
# timezone data files
|
||||||
TZDATA := africa antarctica asia australasia europe northamerica southamerica \
|
TZDATA = africa antarctica asia australasia europe northamerica southamerica \
|
||||||
pacificnew etcetera factory backward systemv solar87 solar88 solar89
|
pacificnew etcetera factory backward systemv solar87 solar88 solar89
|
||||||
TZDATAFILES := $(TZDATA:%=$(srcdir)/data/%)
|
TZDATAFILES = $(TZDATA:%=$(srcdir)/data/%)
|
||||||
|
|
||||||
all: SUBSYS.o submake-libpgport zic
|
all: SUBSYS.o submake-libpgport zic
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# Makefile for the timezone names
|
# Makefile for the timezone names
|
||||||
|
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $PostgreSQL: pgsql/src/timezone/tznames/Makefile,v 1.1 2006/07/25 03:51:23 tgl Exp $
|
# $PostgreSQL: pgsql/src/timezone/tznames/Makefile,v 1.2 2007/02/09 15:56:00 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -12,12 +12,12 @@ subdir = src/timezone/tznames
|
|||||||
top_builddir = ../../..
|
top_builddir = ../../..
|
||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
|
|
||||||
TZNAMES_TEMPLATES := Africa.txt America.txt Antarctica.txt Asia.txt \
|
TZNAMES_TEMPLATES = Africa.txt America.txt Antarctica.txt Asia.txt \
|
||||||
Atlantic.txt Australia.txt Etc.txt Europe.txt Indian.txt Pacific.txt
|
Atlantic.txt Australia.txt Etc.txt Europe.txt Indian.txt Pacific.txt
|
||||||
TZNAMES_TEMPLATES_FILES := $(TZNAMES_TEMPLATES:%=$(srcdir)/%)
|
TZNAMES_TEMPLATES_FILES = $(TZNAMES_TEMPLATES:%=$(srcdir)/%)
|
||||||
|
|
||||||
TZNAMES_SETS := Default Australia India
|
TZNAMES_SETS = Default Australia India
|
||||||
TZNAMES_SETS_FILES := $(TZNAMES_SETS:%=$(srcdir)/%)
|
TZNAMES_SETS_FILES = $(TZNAMES_SETS:%=$(srcdir)/%)
|
||||||
|
|
||||||
install: installdirs
|
install: installdirs
|
||||||
$(INSTALL_DATA) $(TZNAMES_TEMPLATES_FILES) '$(DESTDIR)$(datadir)/timezonesets'
|
$(INSTALL_DATA) $(TZNAMES_TEMPLATES_FILES) '$(DESTDIR)$(datadir)/timezonesets'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user