1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Add contrib/pg_freespacemap to display free space map information.

Mark Kirkwood
This commit is contained in:
Bruce Momjian
2006-02-12 03:55:53 +00:00
parent 6c0d4aabe2
commit d5dd3d451e
8 changed files with 481 additions and 98 deletions

View File

@ -0,0 +1,17 @@
# $PostgreSQL: pgsql/contrib/pg_freespacemap/Makefile,v 1.1 2006/02/12 03:55:53 momjian Exp $
MODULE_big = pg_freespacemap
OBJS = pg_freespacemap.o
DATA_built = pg_freespacemap.sql
DOCS = README.pg_freespacemap
ifdef USE_PGXS
PGXS := $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/pg_freespacemap
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif