summaryrefslogtreecommitdiffstats
path: root/src/backend/access/gist/Makefile
blob: 1aca8bc742250ade0a65f4e136f02b848b6ce795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#-------------------------------------------------------------------------
#
# Makefile--
#    Makefile for access/gist
#
# IDENTIFICATION
#    src/backend/access/gist/Makefile
#
#-------------------------------------------------------------------------

subdir = src/backend/access/gist
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global

OBJS = \
	gist.o \
	gistbuild.o \
	gistbuildbuffers.o \
	gistget.o \
	gistproc.o \
	gistscan.o \
	gistsplit.o \
	gistutil.o \
	gistvacuum.o \
	gistvalidate.o \
	gistxlog.o

include $(top_srcdir)/src/backend/common.mk