mirror of
https://github.com/postgres/postgres.git
synced 2025-05-17 06:41:24 +03:00
Since the tableam.c code needs to make use of the syncscan.c routines itself, and since other block-oriented AMs might also want to use it one day, it didn't make sense for it to live under src/backend/access/heap. Reviewed-by: Andres Freund <andres@anarazel.de> Discussion: https://postgr.es/m/CA%2BhUKGLCnG%3DNEAByg6bk%2BCT9JZD97Y%3DAxKhh27Su9FeGWOKvDg%40mail.gmail.com
27 lines
558 B
Makefile
27 lines
558 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# 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
|