blob: 1479db64ef16b5f1ed5ec472921d7532f74ddb86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
PROGRAM = pg_autovacuum
OBJS = pg_autovacuum.o
PG_CPPFLAGS = -I$(libpq_srcdir)
PG_LIBS = $(libpq)
DOCS = README.pg_autovacuum
ifdef USE_PGXS
PGXS = $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/pg_autovacuum
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
|