summaryrefslogtreecommitdiffstats
path: root/src/backend/storage/page/Makefile
blob: da539b113a69c24ee1910857aab24564a4698c0f (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

# Provide special optimization flags for checksum.c
checksum.o: CFLAGS += ${CFLAGS_UNROLL_LOOPS} ${CFLAGS_VECTORIZE}