You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Makefile--
|
|
|
|
|
# Makefile for lib (miscellaneous stuff)
|
|
|
|
|
#
|
|
|
|
|
# IDENTIFICATION
|
|
|
|
|
# src/backend/lib/Makefile
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
subdir = src/backend/lib
|
|
|
|
|
top_builddir = ../../..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
|
|
|
|
|
OBJS = \
|
|
|
|
|
binaryheap.o \
|
|
|
|
|
bipartite_match.o \
|
|
|
|
|
bloomfilter.o \
|
|
|
|
|
dshash.o \
|
|
|
|
|
hyperloglog.o \
|
|
|
|
|
ilist.o \
|
|
|
|
|
integerset.o \
|
|
|
|
|
knapsack.o \
|
|
|
|
|
pairingheap.o \
|
|
|
|
|
rbtree.o \
|
|
|
|
|
stringinfo.o
|
|
|
|
|
|
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|