Files
repmgr/Makefile
postgres 98d7471d15 Change the name from repmgr to repmgrd. this is a daemon
that will do the monitoring.
2010-09-14 20:42:28 -05:00

21 lines
380 B
Makefile

#
# Makefile
# Copyright (c) 2ndQuadrant, 2010
#
PROGRAM = repmgrd
OBJS = config.o dbutils.o repmgrd.o
PG_CPPFLAGS = -I$(libpq_srcdir)
PG_LIBS = $(libpq_pgport)
ifdef USE_PGXS
PGXS := $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/repmgr
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif