head	1.3;
access;
symbols
	REL9_0_0:1.3
	REL9_1_ALPHA1:1.3
	REL9_0_RC1:1.3
	REL9_0_BETA4:1.3
	REL9_0_STABLE:1.3.0.10
	REL9_0_BETA3:1.3
	REL9_0_BETA2:1.3
	REL8_2_17:1.1
	REL8_3_11:1.2
	REL8_4_4:1.2
	REL9_0_BETA1:1.3
	REL9_0_ALPHA5_BRANCH:1.3.0.8
	REL9_0_ALPHA5:1.3
	REL8_2_16:1.1
	REL8_3_10:1.2
	REL8_4_3:1.2
	REL9_0_ALPHA4:1.3
	REL9_0_ALPHA4_BRANCH:1.3.0.6
	REL8_5_ALPHA3:1.3
	REL8_5_ALPHA3_BRANCH:1.3.0.4
	REL8_2_15:1.1
	REL8_3_9:1.2
	REL8_4_2:1.2
	REL8_5_ALPHA2:1.3
	REL8_5_ALPHA2_BRANCH:1.3.0.2
	REL8_2_14:1.1
	REL8_3_8:1.2
	REL8_4_1:1.2
	REL8_5_ALPHA1:1.2
	REL8_5_ALPHA1_BRANCH:1.2.0.6
	REL8_4_STABLE:1.2.0.4
	REL8_4_0:1.2
	REL8_4_RC2:1.2
	REL8_4_RC1:1.2
	REL8_4_BETA2:1.2
	REL8_4_BETA1:1.2
	REL8_2_13:1.1
	REL8_3_7:1.2
	REL8_2_12:1.1
	REL8_3_6:1.2
	REL8_2_11:1.1
	REL8_3_5:1.2
	REL8_2_10:1.1
	REL8_3_4:1.2
	REL8_2_9:1.1
	REL8_3_3:1.2
	REL8_2_8:1.1
	REL8_3_2:1.2
	REL8_2_7:1.1
	REL8_3_1:1.2
	REL8_3_STABLE:1.2.0.2
	REL8_3_0:1.2
	REL8_3_RC2:1.2
	REL8_2_6:1.1
	REL8_3_RC1:1.2
	REL8_3_BETA4:1.2
	REL8_3_BETA3:1.2
	REL8_3_BETA2:1.2
	REL8_3_BETA1:1.2
	REL8_2_5:1.1
	REL8_2_4:1.1
	REL8_2_3:1.1
	REL8_2_2:1.1
	REL8_2_1:1.1
	REL8_2_STABLE:1.1.0.2
	REL8_2_0:1.1
	REL8_2_RC1:1.1
	REL8_2_BETA3:1.1
	REL8_2_BETA2:1.1
	REL8_2_BETA1:1.1;
locks; strict;
comment	@# @;


1.3
date	2009.08.26.22.24.44;	author petere;	state Exp;
branches;
next	1.2;

1.2
date	2007.02.09.15.56.00;	author petere;	state Exp;
branches;
next	1.1;

1.1
date	2006.07.25.03.51.23;	author tgl;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Update of install-sh, mkinstalldirs, and associated configury

Update install-sh to that from Autoconf 2.63, plus our Darwin-specific
changes (which I simplified a bit).  install-sh is now able to install
multiple files in one run, so we could simplify our makefiles sometime.

install-sh also now has a -d option to create directories, so we don't need
mkinstalldirs anymore.

Use AC_PROG_MKDIR_P in configure.in, so we can use mkdir -p when available
instead of install-sh -d.  For consistency with the rest of the world,
the corresponding make variable has been renamed from $(mkinstalldirs) to
$(MKDIR_P).
@
text
@#-------------------------------------------------------------------------
#
# Makefile
#    Makefile for the timezone names

# IDENTIFICATION
#    $PostgreSQL: pgsql/src/timezone/tznames/Makefile,v 1.2 2007/02/09 15:56:00 petere Exp $
#
#-------------------------------------------------------------------------

subdir = src/timezone/tznames
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global

TZNAMES_TEMPLATES = Africa.txt America.txt Antarctica.txt Asia.txt \
	Atlantic.txt Australia.txt Etc.txt Europe.txt Indian.txt Pacific.txt
TZNAMES_TEMPLATES_FILES = $(TZNAMES_TEMPLATES:%=$(srcdir)/%)

TZNAMES_SETS = Default Australia India
TZNAMES_SETS_FILES = $(TZNAMES_SETS:%=$(srcdir)/%)

install: installdirs
	$(INSTALL_DATA) $(TZNAMES_TEMPLATES_FILES) '$(DESTDIR)$(datadir)/timezonesets'
	$(INSTALL_DATA) $(TZNAMES_SETS_FILES) '$(DESTDIR)$(datadir)/timezonesets'

installdirs:
	$(MKDIR_P) '$(DESTDIR)$(datadir)/timezonesets'

uninstall:
	rm -rf '$(DESTDIR)$(datadir)/timezonesets'
@


1.2
log
@Replace useless uses of := by = in makefiles.
@
text
@d7 1
a7 1
#    $PostgreSQL: pgsql/src/timezone/tznames/Makefile,v 1.1 2006/07/25 03:51:23 tgl Exp $
d27 1
a27 1
	$(mkinstalldirs) '$(DESTDIR)$(datadir)/timezonesets'
@


1.1
log
@Remove hard-wired lists of timezone abbreviations in favor of providing
configuration files that can be altered by a DBA.  The australian_timezones
GUC setting disappears, replaced by a timezone_abbreviations setting (set this
to 'Australia' to get the effect of australian_timezones).  The list of zone
names defined by default has undergone a bit of cleanup, too.  Documentation
still needs some work --- in particular, should we fix Table B-4, or just get
rid of it?  Joachim Wieland, with some editorializing by moi.
@
text
@d7 1
a7 1
#    $PostgreSQL$
d15 1
a15 1
TZNAMES_TEMPLATES := Africa.txt America.txt Antarctica.txt Asia.txt \
d17 1
a17 1
TZNAMES_TEMPLATES_FILES := $(TZNAMES_TEMPLATES:%=$(srcdir)/%)
d19 2
a20 2
TZNAMES_SETS := Default Australia India
TZNAMES_SETS_FILES := $(TZNAMES_SETS:%=$(srcdir)/%)
@

