postgresql/src/tutorial/Makefile

35 lines
870 B
Makefile
Raw Normal View History

#-------------------------------------------------------------------------
#
# Makefile--
1996-11-12 06:43:32 -05:00
# Makefile for tutorial
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.16 2002/09/05 18:28:46 petere 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 06:43:32 -05:00
# include CREATE FUNCTIONs that load routines from these files.
#
1996-11-18 01:07:56 -05:00
DLOBJS= complex$(DLSUFFIX) funcs$(DLSUFFIX)
1996-11-12 06:43:32 -05:00
QUERIES= advanced.sql basics.sql complex.sql funcs.sql syscat.sql
all: $(DLOBJS) $(QUERIES)
1996-11-12 06:43:32 -05:00
%.sql: %.source
rm -f $@; \
C=`pwd`; \
sed -e "s:_OBJWD_:$$C:g" < $< > $@
clean distclean maintainer-clean:
rm -f $(DLOBJS) $(QUERIES)