diff options
author | Tom Lane | 2004-12-31 19:01:54 +0000 |
---|---|---|
committer | Tom Lane | 2004-12-31 19:01:54 +0000 |
commit | 0686fe331f78da210831b168cae422d9478b163e (patch) | |
tree | 146aa9d69f7406fb21461eb9a728b24929f4eb84 /src | |
parent | 883ac5ca7a2a8160549223be99d4d0c17ac128a6 (diff) |
make clean must remove zic$(X) for Windows, per Magnus.
Diffstat (limited to 'src')
-rw-r--r-- | src/timezone/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timezone/Makefile b/src/timezone/Makefile index c704235917a..e468b73dce6 100644 --- a/src/timezone/Makefile +++ b/src/timezone/Makefile @@ -4,7 +4,7 @@ # Makefile for the timezone library # IDENTIFICATION -# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.16 2004/10/04 13:43:59 momjian Exp $ +# $PostgreSQL: pgsql/src/timezone/Makefile,v 1.17 2004/12/31 19:01:54 tgl Exp $ # #------------------------------------------------------------------------- @@ -40,4 +40,4 @@ installdirs: $(mkinstalldirs) $(DESTDIR)$(datadir) clean distclean maintainer-clean: - rm -f SUBSYS.o zic $(OBJS) $(ZICOBJS) + rm -f SUBSYS.o zic$(X) $(OBJS) $(ZICOBJS) |