summaryrefslogtreecommitdiff
path: root/src/backend/Makefile
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2004-12-31 19:09:37 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2004-12-31 19:09:37 +0000
commit7cd25199a9a9dc6ca43a9f25bb6d7911216df364 (patch)
tree8b4bf898e92acc27f857c00ac6d1d72d403f1d74 /src/backend/Makefile
parent0686fe331f78da210831b168cae422d9478b163e (diff)
downloadpostgresql-7cd25199a9a9dc6ca43a9f25bb6d7911216df364.tar.gz
Clean up win32ver.o on Windows, per Magnus.
Diffstat (limited to 'src/backend/Makefile')
-rw-r--r--src/backend/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile
index 7f2b36071d..f1547ad4a1 100644
--- a/src/backend/Makefile
+++ b/src/backend/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $PostgreSQL: pgsql/src/backend/Makefile,v 1.106 2004/10/05 19:30:20 momjian Exp $
+# $PostgreSQL: pgsql/src/backend/Makefile,v 1.107 2004/12/31 19:09:37 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -231,7 +231,7 @@ ifeq ($(PORTNAME), cygwin)
rm -f postgres.dll postgres.def libpostgres.a
endif
ifeq ($(PORTNAME), win32)
- rm -f postgres.dll postgres.def libpostgres.a
+ rm -f postgres.dll postgres.def libpostgres.a $(WIN32RES)
endif
for i in $(DIRS); do $(MAKE) -C $$i clean || exit; done