|
|
|
@ -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: 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
|
|
|
|
|
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)
|
|
|
|
|