]> granicus.if.org Git - postgresql/blob - src/backend/tcop/Makefile
Don't apply sortgroupref labels to a tlist that might not match.
[postgresql] / src / backend / tcop / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for tcop
5 #
6 # IDENTIFICATION
7 #    src/backend/tcop/Makefile
8 #
9 #-------------------------------------------------------------------------
10
11 subdir = src/backend/tcop
12 top_builddir = ../../..
13 include $(top_builddir)/src/Makefile.global
14
15 OBJS= dest.o fastpath.o postgres.o pquery.o utility.o
16
17 ifneq (,$(filter $(PORTNAME),cygwin win32))
18 override CPPFLAGS += -DWIN32_STACK_RLIMIT=$(WIN32_STACK_RLIMIT)
19 endif
20
21 include $(top_srcdir)/src/backend/common.mk