mirror of https://github.com/postgres/postgres
17 lines
393 B
Makefile
17 lines
393 B
Makefile
# contrib/pg_upgrade_support/Makefile
|
|
|
|
PGFILEDESC = "pg_upgrade_support - server-side functions for pg_upgrade"
|
|
|
|
MODULES = pg_upgrade_support
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/pg_upgrade_support
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|