mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-23 15:16:29 +00:00
22 lines
409 B
Makefile
22 lines
409 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Copyright (c) 2ndQuadrant, 2010-2015
|
|
#
|
|
|
|
MODULE_big = repmgr_funcs
|
|
DATA_built=repmgr_funcs.sql
|
|
DATA=uninstall_repmgr_funcs.sql
|
|
OBJS=repmgr_funcs.o
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/repmgr/sql
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|