mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-03 08:00:21 +08:00
b09c248bdd
installations whose pg_config program does not appear first in the PATH. Per gripe from Eddie Stanley and subsequent discussions with Fabien Coelho and others.
20 lines
483 B
Makefile
20 lines
483 B
Makefile
# $PostgreSQL: pgsql/contrib/adminpack/Makefile,v 1.5 2007/06/26 22:05:01 tgl Exp $
|
|
|
|
MODULE_big = adminpack
|
|
PG_CPPFLAGS = -I$(libpq_srcdir)
|
|
DATA_built = adminpack.sql
|
|
DATA = uninstall_adminpack.sql
|
|
DOCS = README.adminpack
|
|
OBJS = adminpack.o
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/adminpack
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|