mirror of
https://github.com/postgres/postgres.git
synced 2026-03-01 21:01:12 -05:00
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.
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile
|
|
# Makefile for the timezone library
|
|
|
|
# IDENTIFICATION
|
|
# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.24 2006/07/25 03:51:22 tgl Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/timezone
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
override CPPFLAGS := $(CPPFLAGS)
|
|
|
|
# files to build into backend
|
|
OBJS= localtime.o strftime.o pgtz.o
|
|
|
|
# files needed to build zic utility program
|
|
ZICOBJS= zic.o ialloc.o scheck.o localtime.o
|
|
|
|
# timezone data files
|
|
TZDATA := africa antarctica asia australasia europe northamerica southamerica \
|
|
pacificnew etcetera factory backward systemv solar87 solar88 solar89
|
|
TZDATAFILES := $(TZDATA:%=$(srcdir)/data/%)
|
|
|
|
all: SUBSYS.o submake-libpgport zic
|
|
|
|
SUBSYS.o: $(OBJS)
|
|
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
|
|
|
|
zic: $(ZICOBJS)
|
|
$(CC) $(CFLAGS) $(ZICOBJS) $(LDFLAGS) $(LIBS) -o $@$(X)
|
|
|
|
install: all installdirs
|
|
./zic -d '$(DESTDIR)$(datadir)/timezone' $(TZDATAFILES)
|
|
$(MAKE) -C tznames $@
|
|
|
|
installdirs:
|
|
$(mkinstalldirs) '$(DESTDIR)$(datadir)'
|
|
|
|
uninstall:
|
|
rm -rf '$(DESTDIR)$(datadir)/timezone'
|
|
$(MAKE) -C tznames $@
|
|
|
|
clean distclean maintainer-clean:
|
|
rm -f SUBSYS.o zic$(X) $(OBJS) $(ZICOBJS)
|