blob: ac0fa8b40b6d693c240d75faefdb29b2704bd078 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for storage/freespace
#
# IDENTIFICATION
# src/backend/storage/freespace/Makefile
#
#-------------------------------------------------------------------------
subdir = src/backend/storage/freespace
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
OBJS = \
freespace.o \
fsmpage.o \
indexfsm.o
include $(top_srcdir)/src/backend/common.mk
|