1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-05 23:38:41 +03:00
Files
postgres/src/backend/access/index/Makefile
Michael Paquier 7854e07f25 Revert "Rename files and headers related to index AM"
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
2019-12-27 08:09:00 +09:00

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