mirror of
https://github.com/zebrajr/postgres.git
synced 2026-01-15 12:15:21 +00:00
This change makes more readable code diffs when adding new items or removing old items, while ensuring that lines do not get excessively long. Some SUBDIRS, PROGRAMS and REGRESS lists are split. Note that there are a few more REGRESS lists that could be split, particularly in contrib/. Author: Jelte Fennema-Nio <postgres@jeltef.nl> Co-Authored-By: Jacob Champion <jacob.champion@enterprisedb.com> Reviewed-by: Chao Li <li.evan.chao@gmail.com> Reviewed-by: Japin Li <japinli@hotmail.com> Reviewed-by: Man Zeng <zengman@halodbtech.com> Discussion: https://postgr.es/m/DF6HDGB559U5.3MPRFCWPONEAE@jeltef.nl
28 lines
371 B
Makefile
28 lines
371 B
Makefile
#
|
|
# Makefile for the access methods module
|
|
#
|
|
# src/backend/access/Makefile
|
|
#
|
|
|
|
subdir = src/backend/access
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = \
|
|
brin \
|
|
common \
|
|
gin \
|
|
gist \
|
|
hash \
|
|
heap \
|
|
index \
|
|
nbtree \
|
|
rmgrdesc \
|
|
spgist \
|
|
sequence \
|
|
table \
|
|
tablesample \
|
|
transam
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|