blob: 55a0e5efadfe2a84ae192a18162cd7686cd97396 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for access/table
#
# IDENTIFICATION
# src/backend/access/table/Makefile
#
#-------------------------------------------------------------------------
subdir = src/backend/access/table
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
OBJS = table.o tableam.o tableamapi.o
include $(top_srcdir)/src/backend/common.mk
|