#-------------------------------------------------------------------------
#
# Makefile.inc--
#    Makefile for the optimizer module
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
#    $Header: /usr/local/devel/pglite/cvs/src/backend/optimizer/Makefile.inc,v 1.5 1995/03/21 06:51:06 andrew Exp $
#
#-------------------------------------------------------------------------

optdir=$(CURDIR)/optimizer
VPATH:=$(VPATH):$(optdir):\
	$(optdir)/path:$(optdir)/prep:$(optdir)/util:$(optdir)/plan

SUBSRCS=
include $(optdir)/path/Makefile.inc
include $(optdir)/prep/Makefile.inc
include $(optdir)/util/Makefile.inc
include $(optdir)/plan/Makefile.inc
SRCS_OPTIMIZER:= $(SUBSRCS)

HEADERS+= clauseinfo.h clauses.h cost.h internal.h joininfo.h keys.h \
	ordering.h pathnode.h paths.h plancat.h planmain.h \
	planner.h prep.h tlist.h var.h xfunc.h


