summaryrefslogtreecommitdiff
path: root/src/Makefile.shlib
diff options
context:
space:
mode:
authorBruce Momjian1999-10-13 11:38:42 +0000
committerBruce Momjian1999-10-13 11:38:42 +0000
commitc3ac9f07b7bf2f764155a9b0e97c761fa780ac27 (patch)
treea17fda5d49da95d387b32c6c71e789dd27aca423 /src/Makefile.shlib
parent8ce829ea6a10de737a744fff8509cd1bef70a971 (diff)
Hi,
I have changed a bit the makefiles for the win32 port - the *.def files (created when building shared libraries) are now clean from Makefile.shlib. I have also removed "-g" from CFLAGS in the "cygwin32" template - it can be enabled when running configure. Dan
Diffstat (limited to 'src/Makefile.shlib')
-rw-r--r--src/Makefile.shlib5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib
index 6d2a5a914e7..4b1beeaf2a1 100644
--- a/src/Makefile.shlib
+++ b/src/Makefile.shlib
@@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.15 1999/09/27 20:54:56 momjian Exp $
+# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.16 1999/10/13 11:38:34 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -274,3 +274,6 @@ endif
clean-shlib:
rm -f $(shlib) lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION) lib$(NAME)$(DLSUFFIX)
+ifeq ($(PORTNAME), win)
+ rm -rf $(NAME).def
+endif