mirror of
https://github.com/postgres/postgres.git
synced 2026-03-30 22:36:05 -04:00
Replace the Perl code previously used to generate specialized sort functions with sort_template.h. Reviewed-by: Daniel Gustafsson <daniel@yesql.se> Discussion: https://postgr.es/m/CA%2BhUKGJ2-eaDqAum5bxhpMNhvuJmRDZxB_Tow0n-gse%2BHG0Yig%40mail.gmail.com
24 lines
542 B
Makefile
24 lines
542 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# 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 \
|
|
sharedtuplestore.o \
|
|
sortsupport.o \
|
|
tuplesort.o \
|
|
tuplestore.o
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|