diff options
Diffstat (limited to 'src/tutorial/Makefile')
-rw-r--r-- | src/tutorial/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
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) |