diff options
author | Bruce Momjian <bruce@momjian.us> | 1996-11-18 06:07:56 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1996-11-18 06:07:56 +0000 |
commit | 317f375bb2ef3337a5ad35bb7b104b31a343d96c (patch) | |
tree | 91bca860609c3cf0cee4602480ea87f24ff895f5 /src/tutorial | |
parent | 4a820de1f274ee7c2f879a1e883745a246d88feb (diff) | |
download | postgresql-317f375bb2ef3337a5ad35bb7b104b31a343d96c.tar.gz postgresql-317f375bb2ef3337a5ad35bb7b104b31a343d96c.zip |
Rename SLSUFF to DLSUFFIX
Diffstat (limited to 'src/tutorial')
-rw-r--r-- | src/tutorial/C-code/Makefile | 5 | ||||
-rw-r--r-- | src/tutorial/Makefile | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/src/tutorial/C-code/Makefile b/src/tutorial/C-code/Makefile index 26fd5c8be4f..548bfadcfe3 100644 --- a/src/tutorial/C-code/Makefile +++ b/src/tutorial/C-code/Makefile @@ -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)
\ No newline at end of file + rm -f complex$(DLSUFFIX) funcs$(DLSUFFIX) + diff --git a/src/tutorial/Makefile b/src/tutorial/Makefile index 87b1a319df8..b463b1c11ee 100644 --- a/src/tutorial/Makefile +++ b/src/tutorial/Makefile @@ -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) |