mirror of
https://github.com/postgres/postgres.git
synced 2025-06-23 14:01:44 +03:00
Rename SLSUFF to DLSUFFIX
This commit is contained in:
@ -3,7 +3,8 @@ include ../../Makefile.global
|
||||
|
||||
CFLAGS+= -I../../include -I$(LIBPQDIR)
|
||||
|
||||
all: complex$(SLSUFF) funcs$(SLSUFF)
|
||||
all: complex$(DLSUFFIX) funcs$(DLSUFFIX)
|
||||
|
||||
clean:
|
||||
rm -f complex$(SLSUFF) funcs$(SLSUFF)
|
||||
rm -f complex$(DLSUFFIX) funcs$(DLSUFFIX)
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Makefile for tutorial
|
||||
#
|
||||
# IDENTIFICATION
|
||||
# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.3 1996/11/13 10:36:24 bryanh Exp $
|
||||
# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.4 1996/11/18 06:07:52 momjian Exp $
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
@ -19,7 +19,7 @@ LDADD+= -L$(LIBPQDIR) -lpq
|
||||
# DLOBJS is the dynamically-loaded object files. The "funcs" queries
|
||||
# include CREATE FUNCTIONs that load routines from these files.
|
||||
#
|
||||
DLOBJS= complex$(SLSUFF) funcs$(SLSUFF)
|
||||
DLOBJS= complex$(DLSUFFIX) funcs$(DLSUFFIX)
|
||||
|
||||
QUERIES= advanced.sql basics.sql complex.sql funcs.sql syscat.sql
|
||||
#
|
||||
@ -39,7 +39,7 @@ all: $(QUERIES)
|
||||
C=`pwd`; \
|
||||
sed -e "s:_CWD_:$$C:g" \
|
||||
-e "s:_OBJWD_:$$C:g" \
|
||||
-e "s:_SLSUFF_:$(SLSUFF):g" \
|
||||
-e "s:_DLSUFFIX_:$(DLSUFFIX):g" \
|
||||
-e "s/_USER_/$$USER/g" < $< > $@
|
||||
|
||||
funcs.sql:: $(DLOBJS)
|
||||
|
Reference in New Issue
Block a user