README: remove duplicate download link & mention related softw.
[pgsql.git] / contrib / pg_freespacemap / Makefile
blobb48e4b255bcfdde110b5c3c9c069e122bf45eadb
1 # contrib/pg_freespacemap/Makefile
3 MODULE_big = pg_freespacemap
4 OBJS = \
5 $(WIN32RES) \
6 pg_freespacemap.o
8 EXTENSION = pg_freespacemap
9 DATA = pg_freespacemap--1.1.sql pg_freespacemap--1.1--1.2.sql \
10 pg_freespacemap--1.0--1.1.sql
11 PGFILEDESC = "pg_freespacemap - monitoring of free space map"
13 REGRESS_OPTS = --temp-config $(top_srcdir)/contrib/pg_freespacemap/pg_freespacemap.conf
14 REGRESS = pg_freespacemap
16 # Disabled because these tests require "autovacuum=off", which
17 # typical installcheck users do not have (e.g. buildfarm clients).
18 NO_INSTALLCHECK = 1
20 ifdef USE_PGXS
21 PG_CONFIG = pg_config
22 PGXS := $(shell $(PG_CONFIG) --pgxs)
23 include $(PGXS)
24 else
25 subdir = contrib/pg_freespacemap
26 top_builddir = ../..
27 include $(top_builddir)/src/Makefile.global
28 include $(top_srcdir)/contrib/contrib-global.mk
29 endif