blob: 80f9ea61e9f4e9cfcfcdd6a6b9c3c843415ee6c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for access/hash
#
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/access/hash/Makefile,v 1.15 2008/03/16 23:15:08 tgl Exp $
#
#-------------------------------------------------------------------------
subdir = src/backend/access/hash
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
OBJS = hash.o hashfunc.o hashinsert.o hashovfl.o hashpage.o hashscan.o \
hashsearch.o hashsort.o hashutil.o
include $(top_srcdir)/src/backend/common.mk
|