aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/sort/Makefile
blob: 5bfca3040aaa61224e77283ea6111095e394ac1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#-------------------------------------------------------------------------
#
# Makefile--
#    Makefile for utils/sort
#
# IDENTIFICATION
#    src/backend/utils/sort/Makefile
#
#-------------------------------------------------------------------------

subdir = src/backend/utils/sort
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global

override CPPFLAGS := -I. -I$(srcdir) $(CPPFLAGS)

OBJS = \
	logtape.o \
	qsort_interruptible.o \
	sharedtuplestore.o \
	sortsupport.o \
	tuplesort.o \
	tuplesortvariants.o \
	tuplestore.o

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