Properly use $(AWK) in Makefile, not 'awk'
[pgsql.git] / contrib / pg_freespacemap / Makefile
bloba986ae73d69cc3bd33952fbb1634714290095574
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 \
10 pg_freespacemap--1.2--1.3.sql \
11 pg_freespacemap--1.1--1.2.sql \
12 pg_freespacemap--1.0--1.1.sql
13 PGFILEDESC = "pg_freespacemap - monitoring of free space map"
15 REGRESS_OPTS = --temp-config $(top_srcdir)/contrib/pg_freespacemap/pg_freespacemap.conf
16 REGRESS = pg_freespacemap
18 # Disabled because these tests require "autovacuum=off", which
19 # typical installcheck users do not have (e.g. buildfarm clients).
20 NO_INSTALLCHECK = 1
22 ifdef USE_PGXS
23 PG_CONFIG = pg_config
24 PGXS := $(shell $(PG_CONFIG) --pgxs)
25 include $(PGXS)
26 else
27 subdir = contrib/pg_freespacemap
28 top_builddir = ../..
29 include $(top_builddir)/src/Makefile.global
30 include $(top_srcdir)/contrib/contrib-global.mk
31 endif