Change ALTER TABLE SET WITHOUT OIDS to rewrite the whole table to physically
[PostgreSQL.git] / contrib / pageinspect / Makefile
blob588b64a5ea084f0e1001d9a97b41c2379338bff9
1 #-------------------------------------------------------------------------
3 # pageinspect Makefile
5 # $PostgreSQL$
7 #-------------------------------------------------------------------------
9 MODULE_big = pageinspect
10 OBJS = rawpage.o heapfuncs.o btreefuncs.o fsmfuncs.o
11 DATA_built = pageinspect.sql
12 DATA = uninstall_pageinspect.sql
14 ifdef USE_PGXS
15 PG_CONFIG = pg_config
16 PGXS := $(shell $(PG_CONFIG) --pgxs)
17 include $(PGXS)
18 else
19 subdir = contrib/pageinspect
20 top_builddir = ../..
21 include $(top_builddir)/src/Makefile.global
22 include $(top_srcdir)/contrib/contrib-global.mk
23 endif