diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-26 20:02:12 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-26 20:02:12 +0000 |
commit | e78fe652f48f9dbb67a21f616741e7b446204cbe (patch) | |
tree | dcf94f3d8d6b1ff4923486c24e15ace811e82d38 /src/backend/access/gist/Makefile.inc | |
parent | 2fd6061e1c8c91f3d1398826ddfddbcefce477e8 (diff) | |
download | postgresql-e78fe652f48f9dbb67a21f616741e7b446204cbe.tar.gz postgresql-e78fe652f48f9dbb67a21f616741e7b446204cbe.zip |
Oops, thanks to Dan McGuirk for pointing out that I missed part of
the commit :(
Here's the rest of the GiST code thta was missing...
Diffstat (limited to 'src/backend/access/gist/Makefile.inc')
-rw-r--r-- | src/backend/access/gist/Makefile.inc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/backend/access/gist/Makefile.inc b/src/backend/access/gist/Makefile.inc new file mode 100644 index 00000000000..8519ab0a582 --- /dev/null +++ b/src/backend/access/gist/Makefile.inc @@ -0,0 +1,16 @@ +#------------------------------------------------------------------------- +# +# Makefile.inc-- +# Makefile for access/rtree (R-Tree access method) +# +# Copyright (c) 1994, Regents of the University of California +# +# +# IDENTIFICATION +# /usr/local/devel/pglite/cvs/src/backend/access/rtree/Makefile.inc,v 1.2 1995/03/21 06:50:48 andrew Exp +# +#------------------------------------------------------------------------- + +SUBSRCS+= gist.c gistget.c gistscan.c giststrat.c + + |