mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
ccbe0c14e6
from Tom.
20 lines
490 B
Makefile
20 lines
490 B
Makefile
#
|
|
# Makefile for pg_upgrade_support
|
|
#
|
|
# $PostgreSQL: pgsql/contrib/pg_upgrade_support/Makefile,v 1.3 2010/07/03 14:23:14 momjian Exp $
|
|
|
|
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
|