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 = be-fsstubs.o be-secure.o auth.o crypt.o hba.o ip.o md5.o pqcomm.o \
18       pqformat.o pqmq.o pqsignal.o
19
20ifeq ($(with_openssl),yes)
21OBJS += be-secure-openssl.o
22endif
23
24include $(top_srcdir)/src/backend/common.mk
25