postgresql/src/backend/access/common/Makefile
Thomas Munro cb04ad4985 Move syncscan.c to src/backend/access/common.
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
2020-07-29 16:59:33 +12:00

33 lines
638 B
Makefile

#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for access/common
#
# IDENTIFICATION
# src/backend/access/common/Makefile
#
#-------------------------------------------------------------------------
subdir = src/backend/access/common
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
OBJS = \
attmap.o \
bufmask.o \
detoast.o \
heaptuple.o \
indextuple.o \
printsimple.o \
printtup.o \
relation.o \
reloptions.o \
scankey.o \
session.o \
syncscan.o \
toast_internals.o \
tupconvert.o \
tupdesc.o
include $(top_srcdir)/src/backend/common.mk