2010-09-21 04:08:53 +08:00
|
|
|
# contrib/pg_standby/Makefile
|
2010-05-12 19:33:10 +08:00
|
|
|
|
|
|
|
PGFILEDESC = "pg_standby - supports creation of a warm standby"
|
2011-01-25 09:46:30 +08:00
|
|
|
PGAPPICON = win32
|
2007-02-08 23:16:19 +08:00
|
|
|
|
|
|
|
PROGRAM = pg_standby
|
2014-07-15 02:07:52 +08:00
|
|
|
OBJS = pg_standby.o $(WIN32RES)
|
2007-02-08 23:16:19 +08:00
|
|
|
|
|
|
|
ifdef USE_PGXS
|
2007-06-27 06:05:04 +08:00
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
2007-02-08 23:16:19 +08:00
|
|
|
include $(PGXS)
|
|
|
|
else
|
|
|
|
subdir = contrib/pg_standby
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
endif
|