1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Add Pgadmin administration functions to /contrib/adminpack.

Dave Page
This commit is contained in:
Bruce Momjian
2006-05-30 12:07:31 +00:00
parent 38c7700f56
commit fe59e56660
5 changed files with 497 additions and 3 deletions

View File

@ -0,0 +1,15 @@
MODULE_big = adminpack
PG_CPPFLAGS = -I$(libpq_srcdir)
DATA_built = adminpack.sql
DOCS = README.adminpack
OBJS = adminpack.o
ifdef USE_PGXS
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