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

Replace useless uses of := by = in makefiles.

This commit is contained in:
Peter Eisentraut
2007-02-09 15:56:00 +00:00
parent d7fee591db
commit c138b966d4
46 changed files with 121 additions and 123 deletions

View File

@ -4,7 +4,7 @@
# Makefile for the timezone library
# 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 = ../..
include $(top_builddir)/src/Makefile.global
override CPPFLAGS := $(CPPFLAGS)
# files to build into backend
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
# 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
TZDATAFILES := $(TZDATA:%=$(srcdir)/data/%)
TZDATAFILES = $(TZDATA:%=$(srcdir)/data/%)
all: SUBSYS.o submake-libpgport zic

View File

@ -4,7 +4,7 @@
# Makefile for the timezone names
# 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 = ../../..
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
TZNAMES_TEMPLATES_FILES := $(TZNAMES_TEMPLATES:%=$(srcdir)/%)
TZNAMES_TEMPLATES_FILES = $(TZNAMES_TEMPLATES:%=$(srcdir)/%)
TZNAMES_SETS := Default Australia India
TZNAMES_SETS_FILES := $(TZNAMES_SETS:%=$(srcdir)/%)
TZNAMES_SETS = Default Australia India
TZNAMES_SETS_FILES = $(TZNAMES_SETS:%=$(srcdir)/%)
install: installdirs
$(INSTALL_DATA) $(TZNAMES_TEMPLATES_FILES) '$(DESTDIR)$(datadir)/timezonesets'