From 6eb9c5a5657d1fe77b55cc261450f3538d35a94d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:19:15 +0200 Subject: Adding upstream version 13.4. Signed-off-by: Daniel Baumann --- contrib/pg_standby/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 contrib/pg_standby/Makefile (limited to 'contrib/pg_standby/Makefile') diff --git a/contrib/pg_standby/Makefile b/contrib/pg_standby/Makefile new file mode 100644 index 0000000..87732be --- /dev/null +++ b/contrib/pg_standby/Makefile @@ -0,0 +1,20 @@ +# contrib/pg_standby/Makefile + +PGFILEDESC = "pg_standby - supports creation of a warm standby" +PGAPPICON = win32 + +PROGRAM = pg_standby +OBJS = \ + $(WIN32RES) \ + pg_standby.o + +ifdef USE_PGXS +PG_CONFIG = pg_config +PGXS := $(shell $(PG_CONFIG) --pgxs) +include $(PGXS) +else +subdir = contrib/pg_standby +top_builddir = ../.. +include $(top_builddir)/src/Makefile.global +include $(top_srcdir)/contrib/contrib-global.mk +endif -- cgit v1.2.3