mirror of
https://github.com/postgres/postgres.git
synced 2026-01-05 23:38:41 +03:00
This follows multiple complains from Peter Geoghegan, Andres Freund and Alvaro Herrera that this issue ought to be dug more before actually happening, if it happens. Discussion: https://postgr.es/m/20191226144606.GA5659@alvherre.pgsql
22 lines
466 B
Makefile
22 lines
466 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for access/index
|
|
#
|
|
# IDENTIFICATION
|
|
# src/backend/access/index/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/access/index
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS = \
|
|
amapi.o \
|
|
amvalidate.o \
|
|
genam.o \
|
|
indexam.o
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|