blob: af0bd1888e53ffd6d250c47c53c289f07fbb0b8c (
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
|
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for access/heap
#
# IDENTIFICATION
# src/backend/access/heap/Makefile
#
#-------------------------------------------------------------------------
subdir = src/backend/access/heap
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
OBJS = \
heapam.o \
heapam_handler.o \
heapam_visibility.o \
heaptoast.o \
hio.o \
pruneheap.o \
rewriteheap.o \
vacuumlazy.o \
visibilitymap.o
include $(top_srcdir)/src/backend/common.mk
|