summaryrefslogtreecommitdiffstats
path: root/src/backend/access/nbtree/Makefile
blob: d69808e78c61e1707ba183059b96b678dd7a49a2 (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/nbtree
#
# IDENTIFICATION
#    src/backend/access/nbtree/Makefile
#
#-------------------------------------------------------------------------

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

OBJS = \
	nbtcompare.o \
	nbtdedup.o \
	nbtinsert.o \
	nbtpage.o \
	nbtree.o \
	nbtsearch.o \
	nbtsort.o \
	nbtsplitloc.o \
	nbtutils.o \
	nbtvalidate.o \
	nbtxlog.o

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