diff options
| author | Michael Paquier <michael@paquier.xyz> | 2025-12-28 09:17:42 +0900 |
|---|---|---|
| committer | Michael Paquier <michael@paquier.xyz> | 2025-12-28 09:17:42 +0900 |
| commit | 9adf32da6b48e423e632ac24d6c634021e1ab154 (patch) | |
| tree | 42e4e8d92f318488958546b623fe03a75ea0aa40 /src/include | |
| parent | a9123db14a12e2e2dfb93dbbef4f2cdc2986023b (diff) | |
Split some long Makefile lists
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/include')
| -rw-r--r-- | src/include/Makefile | 48 |
1 files changed, 40 insertions, 8 deletions
diff --git a/src/include/Makefile b/src/include/Makefile index 24c5452de98..4ef060e9050 100644 --- a/src/include/Makefile +++ b/src/include/Makefile @@ -17,14 +17,46 @@ all: pg_config.h pg_config_os.h # Subdirectories containing installable headers -SUBDIRS = access archive bootstrap catalog commands common datatype \ - executor fe_utils foreign jit \ - lib libpq mb nodes optimizer parser partitioning postmaster \ - regex replication rewrite \ - statistics storage tcop snowball snowball/libstemmer tsearch \ - tsearch/dicts utils port port/atomics port/win32 port/win32_msvc \ - port/win32_msvc/sys port/win32/arpa port/win32/netinet \ - port/win32/sys portability +SUBDIRS = \ + access \ + archive \ + bootstrap \ + catalog \ + commands \ + common \ + datatype \ + executor \ + fe_utils \ + foreign \ + jit \ + lib \ + libpq \ + mb \ + nodes \ + optimizer \ + parser \ + partitioning \ + postmaster \ + regex \ + replication \ + rewrite \ + statistics \ + storage \ + tcop \ + snowball \ + snowball/libstemmer \ + tsearch \ + tsearch/dicts \ + utils \ + port \ + port/atomics \ + port/win32 \ + port/win32_msvc \ + port/win32_msvc/sys \ + port/win32/arpa \ + port/win32/netinet \ + port/win32/sys \ + portability # Install all headers install: all installdirs |
