diff options
Diffstat (limited to 'src/backend/optimizer/Makefile.inc')
-rw-r--r-- | src/backend/optimizer/Makefile.inc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/backend/optimizer/Makefile.inc b/src/backend/optimizer/Makefile.inc new file mode 100644 index 00000000000..bd453d69645 --- /dev/null +++ b/src/backend/optimizer/Makefile.inc @@ -0,0 +1,29 @@ +#------------------------------------------------------------------------- +# +# Makefile.inc-- +# Makefile for the optimizer module +# +# Copyright (c) 1994, Regents of the University of California +# +# +# IDENTIFICATION +# $Header: /cvsroot/pgsql/src/backend/optimizer/Attic/Makefile.inc,v 1.1.1.1 1996/07/09 06:21:34 scrappy 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 + + |