1#-------------------------------------------------------------------------
2#
3# Makefile--
4#    Makefile for libpq subsystem (backend half of libpq interface)
5#
6# IDENTIFICATION
7#    src/backend/libpq/Makefile
8#
9#-------------------------------------------------------------------------
10
11subdir = src/backend/libpq
12top_builddir = ../../..
13include $(top_builddir)/src/Makefile.global
14
15# be-fsstubs is here for historical reasons, probably belongs elsewhere
16
17OBJS = \
18	auth-scram.o \
19	auth.o \
20	be-fsstubs.o \
21	be-secure-common.o \
22	be-secure.o \
23	crypt.o \
24	hba.o \
25	ifaddr.o \
26	pqcomm.o \
27	pqformat.o \
28	pqmq.o \
29	pqsignal.o
30
31ifeq ($(with_openssl),yes)
32OBJS += be-secure-openssl.o
33endif
34
35ifeq ($(with_gssapi),yes)
36OBJS += be-gssapi-common.o be-secure-gssapi.o
37endif
38
39include $(top_srcdir)/src/backend/common.mk
40