summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2005-01-13 18:23:22 +0000
committerTom Lane2005-01-13 18:23:22 +0000
commite8176ae900231ad326c17e20f687639d5fd1ea88 (patch)
tree9cb5d74ee6052c444b4b15a072203f95b5907d74
parented8db1dd4718e69c4b9cc6c9f9e2673487700f6d (diff)
Adjust src/tutorial Makefile so that it can use pgxs. This allows the
tutorial to be used without necessarily having a configured source tree.
-rw-r--r--src/Makefile4
-rw-r--r--src/tutorial/Makefile32
2 files changed, 18 insertions, 18 deletions
diff --git a/src/Makefile b/src/Makefile
index a2f11f6581..958218bcba 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -53,7 +53,7 @@ clean:
$(MAKE) -C pl $@
$(MAKE) -C makefiles $@
$(MAKE) -C test $@
- $(MAKE) -C tutorial $@
+ $(MAKE) -C tutorial NO_PGXS=1 $@
$(MAKE) -C utils $@
$(MAKE) -C tools/thread $@
@@ -67,7 +67,7 @@ distclean maintainer-clean:
-$(MAKE) -C pl $@
-$(MAKE) -C makefiles $@
-$(MAKE) -C test $@
- -$(MAKE) -C tutorial $@
+ -$(MAKE) -C tutorial NO_PGXS=1 $@
-$(MAKE) -C utils $@
-$(MAKE) -C tools/thread $@
rm -f Makefile.port Makefile.global
diff --git a/src/tutorial/Makefile b/src/tutorial/Makefile
index 21c82cdbfd..e37161f362 100644
--- a/src/tutorial/Makefile
+++ b/src/tutorial/Makefile
@@ -3,32 +3,32 @@
# Makefile--
# 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
# $PostgreSQL$
#
#-------------------------------------------------------------------------
-subdir = src/tutorial
-top_builddir = ../..
-include $(top_builddir)/src/Makefile.global
+MODULES = complex funcs
+DATA_built = advanced.sql basics.sql complex.sql funcs.sql syscat.sql
-override CFLAGS+= $(CFLAGS_SL)
SHLIB_LINK = $(BE_DLLLIBS)
-#
-# DLOBJS are the dynamically-loaded object files. The "funcs" queries
-# include CREATE FUNCTIONs that load routines from these files.
-#
-DLOBJS= complex$(DLSUFFIX) funcs$(DLSUFFIX)
-
-QUERIES= advanced.sql basics.sql complex.sql funcs.sql syscat.sql
-
-all: $(DLOBJS) $(QUERIES)
+ifdef NO_PGXS
+subdir = src/tutorial
+top_builddir = ../..
+include $(top_builddir)/src/Makefile.global
+include $(top_srcdir)/src/makefiles/pgxs.mk
+else
+PGXS = $(shell pg_config --pgxs)
+include $(PGXS)
+endif
%.sql: %.source
rm -f $@; \
C=`pwd`; \
sed -e "s:_OBJWD_:$$C:g" < $< > $@
-
-clean distclean maintainer-clean:
- rm -f $(DLOBJS) $(QUERIES)