diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-05-24 18:10:17 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-05-24 18:10:17 +0000 |
commit | 2f2d05763d1c55c7998c0d7030659e3db6f60183 (patch) | |
tree | 712315fa10be6aae8bc89a26db9d1be221248183 /src/Makefile.shlib | |
parent | c0fdec2b6a5ff5981c097101a938dea890be2392 (diff) | |
download | postgresql-2f2d05763d1c55c7998c0d7030659e3db6f60183.tar.gz |
Change PL/Tcl build to use configured compiler and Makefile.shlib
system, not Tcl-provided one.
Make sure export file, if any, is cleaned.
Tcl configuration is now read directly in configure and recorded in
Makefile.global. This eliminates some duplicate efforts and allows
for easier hand-editing of the results, if necessary.
Diffstat (limited to 'src/Makefile.shlib')
-rw-r--r-- | src/Makefile.shlib | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib index 9a4ee4b50e..06e0060df0 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.57 2002/04/10 16:45:25 petere Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.58 2002/05/24 18:10:17 petere Exp $ # #------------------------------------------------------------------------- @@ -400,7 +400,10 @@ endif # enable_shared clean-lib: rm -f lib$(NAME).a ifeq ($(enable_shared), yes) - rm -f $(shlib) lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION) lib$(NAME)$(DLSUFFIX) + rm -f lib$(NAME)$(DLSUFFIX) lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION) lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION) +ifdef EXPSUFF + rm -f lib$(NAME)$(EXPSUFF) +endif endif ifeq ($(PORTNAME), win) rm -rf $(NAME).def |