diff options
Diffstat (limited to 'src/Makefile.global')
-rw-r--r-- | src/Makefile.global | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile.global b/src/Makefile.global index 5060a501e04..cf58101d03a 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.71 1996/11/18 02:23:16 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.72 1996/11/18 06:07:12 momjian Exp $ # # NOTES # Essentially all Postgres make files include this file and use the @@ -289,7 +289,7 @@ endif # Shared libraries. # This is overridden for many PORTNAMEs below. -SLSUFF= .so +DLSUFFIX= .so #---------------------------------------------------------------------- ifeq ($(PORTNAME), BSD44_derived) @@ -476,7 +476,7 @@ INSTALL= bsdinst RANLIB= touch CFLAGS_SL= +z -SLSUFF= .sl +DLSUFFIX= .sl %.sl: %.o $(LD) -b -o $@ $< @@ -547,10 +547,10 @@ endif ifeq ($(PORTNAME), linux) ifndef LINUX_ELF -SLSUFF= .o +DLSUFFIX= .o LDADD_BE= -ldld else -SLSUFF= .so +DLSUFFIX= .so LDADD_BE= -ldl LDFLAGS_BE= -rdynamic endif @@ -675,7 +675,7 @@ INSTALL= /usr/bin/install RANLIB= /usr/bin/ranlib CFLAGS_SL= -G 0 -SLSUFF= .o +DLSUFFIX= .o endif |