mirror of
https://github.com/postgres/postgres.git
synced 2026-02-18 18:25:17 -05:00
When maintaining or merging patches, one of the most common sources for conflicts are the list of objects in makefiles. Especially when the split across lines has been changed on both sides, which is somewhat common due to attempting to stay below 80 columns, those conflicts are unnecessarily laborious to resolve. By splitting, and alphabetically sorting, OBJS style lines into one object per line, conflicts should be less frequent, and easier to resolve when they still occur. Author: Andres Freund Discussion: https://postgr.es/m/20191029200901.vww4idgcxv74cwes@alap3.anarazel.de
39 lines
810 B
Makefile
39 lines
810 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for libpq subsystem (backend half of libpq interface)
|
|
#
|
|
# IDENTIFICATION
|
|
# src/backend/libpq/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/libpq
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
# be-fsstubs is here for historical reasons, probably belongs elsewhere
|
|
|
|
OBJS = \
|
|
auth-scram.o \
|
|
auth.o \
|
|
be-fsstubs.o \
|
|
be-secure-common.o \
|
|
be-secure.o \
|
|
crypt.o \
|
|
hba.o \
|
|
ifaddr.o \
|
|
pqcomm.o \
|
|
pqformat.o \
|
|
pqmq.o \
|
|
pqsignal.o
|
|
|
|
ifeq ($(with_openssl),yes)
|
|
OBJS += be-secure-openssl.o
|
|
endif
|
|
|
|
ifeq ($(with_gssapi),yes)
|
|
OBJS += be-gssapi-common.o be-secure-gssapi.o
|
|
endif
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|