mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
15 lines
275 B
Makefile
15 lines
275 B
Makefile
|
|
||
|
subdir = contrib/pg_autovacuum
|
||
|
top_builddir = ../..
|
||
|
include $(top_builddir)/src/Makefile.global
|
||
|
|
||
|
PROGRAM = pg_autovacuum
|
||
|
OBJS = pg_autovacuum.o
|
||
|
|
||
|
PG_CPPFLAGS = -I$(libpq_srcdir)
|
||
|
PG_LIBS = $(libpq)
|
||
|
|
||
|
DOCS = README.pg_autovacuum
|
||
|
|
||
|
include $(top_srcdir)/contrib/contrib-global.mk
|