summaryrefslogtreecommitdiffstats
path: root/src/backend/storage/page/Makefile
blob: 10021e2bb31e01ae5dcee325f8aa929a6a28b76a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#-------------------------------------------------------------------------
#
# Makefile--
#    Makefile for storage/page
#
# IDENTIFICATION
#    src/backend/storage/page/Makefile
#
#-------------------------------------------------------------------------

subdir = src/backend/storage/page
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global

OBJS =  \
	bufpage.o \
	checksum.o \
	itemptr.o

include $(top_srcdir)/src/backend/common.mk

# important optimizations flags for checksum.c
checksum.o: CFLAGS += ${CFLAGS_VECTOR}