Commit 3810c23f authored by Tom Lane's avatar Tom Lane

Adjust src/tutorial Makefile so that it can use pgxs. This allows the

tutorial to be used without necessarily having a configured source tree.
parent c06b31dc
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
# Copyright (c) 1994, Regents of the University of California # Copyright (c) 1994, Regents of the University of California
# #
# $PostgreSQL: pgsql/src/Makefile,v 1.35 2004/10/06 08:49:59 momjian Exp $ # $PostgreSQL: pgsql/src/Makefile,v 1.36 2005/01/13 18:23:21 tgl Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -53,7 +53,7 @@ clean: ...@@ -53,7 +53,7 @@ clean:
$(MAKE) -C pl $@ $(MAKE) -C pl $@
$(MAKE) -C makefiles $@ $(MAKE) -C makefiles $@
$(MAKE) -C test $@ $(MAKE) -C test $@
$(MAKE) -C tutorial $@ $(MAKE) -C tutorial NO_PGXS=1 $@
$(MAKE) -C utils $@ $(MAKE) -C utils $@
$(MAKE) -C tools/thread $@ $(MAKE) -C tools/thread $@
...@@ -67,7 +67,7 @@ distclean maintainer-clean: ...@@ -67,7 +67,7 @@ distclean maintainer-clean:
-$(MAKE) -C pl $@ -$(MAKE) -C pl $@
-$(MAKE) -C makefiles $@ -$(MAKE) -C makefiles $@
-$(MAKE) -C test $@ -$(MAKE) -C test $@
-$(MAKE) -C tutorial $@ -$(MAKE) -C tutorial NO_PGXS=1 $@
-$(MAKE) -C utils $@ -$(MAKE) -C utils $@
-$(MAKE) -C tools/thread $@ -$(MAKE) -C tools/thread $@
rm -f Makefile.port Makefile.global rm -f Makefile.port Makefile.global
......
...@@ -3,32 +3,32 @@ ...@@ -3,32 +3,32 @@
# Makefile-- # Makefile--
# Makefile for tutorial # Makefile for tutorial
# #
# By default, this builds against an existing PostgreSQL installation
# (the one identified by whichever pg_config is first in your path).
# Within a configured source tree, you can say "gmake NO_PGXS=1 all"
# to build using the surrounding source tree.
#
# IDENTIFICATION # IDENTIFICATION
# $PostgreSQL: pgsql/src/tutorial/Makefile,v 1.17 2003/11/29 19:52:14 pgsql Exp $ # $PostgreSQL: pgsql/src/tutorial/Makefile,v 1.18 2005/01/13 18:23:22 tgl Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
subdir = src/tutorial MODULES = complex funcs
top_builddir = ../.. DATA_built = advanced.sql basics.sql complex.sql funcs.sql syscat.sql
include $(top_builddir)/src/Makefile.global
override CFLAGS+= $(CFLAGS_SL)
SHLIB_LINK = $(BE_DLLLIBS) SHLIB_LINK = $(BE_DLLLIBS)
# ifdef NO_PGXS
# DLOBJS are the dynamically-loaded object files. The "funcs" queries subdir = src/tutorial
# include CREATE FUNCTIONs that load routines from these files. top_builddir = ../..
# include $(top_builddir)/src/Makefile.global
DLOBJS= complex$(DLSUFFIX) funcs$(DLSUFFIX) include $(top_srcdir)/src/makefiles/pgxs.mk
else
QUERIES= advanced.sql basics.sql complex.sql funcs.sql syscat.sql PGXS = $(shell pg_config --pgxs)
include $(PGXS)
all: $(DLOBJS) $(QUERIES) endif
%.sql: %.source %.sql: %.source
rm -f $@; \ rm -f $@; \
C=`pwd`; \ C=`pwd`; \
sed -e "s:_OBJWD_:$$C:g" < $< > $@ sed -e "s:_OBJWD_:$$C:g" < $< > $@
clean distclean maintainer-clean:
rm -f $(DLOBJS) $(QUERIES)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment