#-------------------------------------------------------------------------
#
# Makefile--
#    Makefile for tutorial/C-code
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
#    /usr/local/devel/pglite/cvs/src/tutorial/Makefile,v 1.4 1995/03/23 01:24:52 andrew Exp
#
#-------------------------------------------------------------------------

MKDIR=	../mk
include $(MKDIR)/postgres.mk

VPATH:= $(VPATH):C-code

#
# build dynamically-loaded object files
#
DLOBJS= complex.o funcs.o 

CREATEFILES= $(DLOBJS:%=$(objdir)/%)


include $(MKDIR)/postgres.user.mk

CLEANFILES+= $(notdir $(CREATEFILES))

all:: $(CREATEFILES)



