summaryrefslogtreecommitdiff
path: root/src/backend/access
diff options
context:
space:
mode:
authorMichael Paquier2025-12-28 00:17:42 +0000
committerMichael Paquier2025-12-28 00:17:42 +0000
commit9adf32da6b48e423e632ac24d6c634021e1ab154 (patch)
tree42e4e8d92f318488958546b623fe03a75ea0aa40 /src/backend/access
parenta9123db14a12e2e2dfb93dbbef4f2cdc2986023b (diff)
Split some long Makefile listsHEADmaster
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
Diffstat (limited to 'src/backend/access')
-rw-r--r--src/backend/access/Makefile17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/backend/access/Makefile b/src/backend/access/Makefile
index 1932d11d154..e88d72ea039 100644
--- a/src/backend/access/Makefile
+++ b/src/backend/access/Makefile
@@ -8,7 +8,20 @@ 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
+SUBDIRS = \
+ brin \
+ common \
+ gin \
+ gist \
+ hash \
+ heap \
+ index \
+ nbtree \
+ rmgrdesc \
+ spgist \
+ sequence \
+ table \
+ tablesample \
+ transam
include $(top_srcdir)/src/backend/common.mk