1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-25 01:02:05 +03:00

Integrate timezone library to be called only from Win32.

Timezone code backend integration done by Magnus Hagander.
This commit is contained in:
Bruce Momjian
2004-04-30 04:31:52 +00:00
parent 7d6f37b8c0
commit 7146eb0bc3
5 changed files with 21 additions and 9 deletions

View File

@ -4,26 +4,26 @@
# Makefile for the timezone library
# IDENTIFICATION
# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.1 2004/04/30 04:09:23 momjian Exp $
# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.2 2004/04/30 04:31:52 momjian Exp $
#
#-------------------------------------------------------------------------
subdir = src/port/tz
top_builddir = ../../..
subdir = src/tz
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
OBJS= asctime.o difftime.o localtime.o pgtz.o
ZICOBJS= zic.o ialloc.o scheck.o localtime.o asctime.o pgtz.o ../path.o
ZICOBJS= zic.o ialloc.o scheck.o localtime.o asctime.o pgtz.o
TZDATA := africa antarctica asia australasia europe northamerica southamerica pacificnew etcetera factory backward systemv solar87 solar88 solar89
TZDATAFILES := $(TZDATA:%=data/%)
ifeq ($(PGTZ), yes)
all: SUBSYS.o zic
SUBSYS.o: $(OBJS)
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
zic: $(ZICOBJS)
install: zic
@ -31,3 +31,5 @@ install: zic
clean distclean maintainer-clean:
rm -f SUBSYS.o $(OBJS) $(ZICOBJS)
endif