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

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

OBJS = \
	brin.o \
	brin_bloom.o \
	brin_inclusion.o \
	brin_minmax.o \
	brin_minmax_multi.o \
	brin_pageops.o \
	brin_revmap.o \
	brin_tuple.o \
	brin_validate.o \
	brin_xlog.o

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