postgresql/src/tutorial/Makefile

35 lines
864 B
Makefile
Raw Normal View History

#-------------------------------------------------------------------------
#
# Makefile--
1996-11-12 12:43:32 +01:00
# Makefile for tutorial
#
# IDENTIFICATION
2003-11-29 20:52:15 +01:00
# $PostgreSQL: pgsql/src/tutorial/Makefile,v 1.17 2003/11/29 19:52:14 pgsql Exp $
#
#-------------------------------------------------------------------------
subdir = src/tutorial
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
override CFLAGS+= $(CFLAGS_SL)
SHLIB_LINK = $(BE_DLLLIBS)
#
# DLOBJS are the dynamically-loaded object files. The "funcs" queries
1996-11-12 12:43:32 +01:00
# include CREATE FUNCTIONs that load routines from these files.
#
1996-11-18 07:07:56 +01:00
DLOBJS= complex$(DLSUFFIX) funcs$(DLSUFFIX)
1996-11-12 12:43:32 +01:00
QUERIES= advanced.sql basics.sql complex.sql funcs.sql syscat.sql
all: $(DLOBJS) $(QUERIES)
1996-11-12 12:43:32 +01:00
%.sql: %.source
rm -f $@; \
C=`pwd`; \
sed -e "s:_OBJWD_:$$C:g" < $< > $@
clean distclean maintainer-clean:
rm -f $(DLOBJS) $(QUERIES)