1# contrib/vacuumlo/Makefile
2
3PGFILEDESC = "vacuumlo - removes orphaned large objects"
4PGAPPICON = win32
5
6PROGRAM = vacuumlo
7OBJS	= vacuumlo.o $(WIN32RES)
8
9TAP_TESTS = 1
10
11PG_CPPFLAGS = -I$(libpq_srcdir)
12PG_LIBS_INTERNAL = $(libpq_pgport)
13
14ifdef USE_PGXS
15PG_CONFIG = pg_config
16PGXS := $(shell $(PG_CONFIG) --pgxs)
17include $(PGXS)
18else
19subdir = contrib/vacuumlo
20top_builddir = ../..
21include $(top_builddir)/src/Makefile.global
22include $(top_srcdir)/contrib/contrib-global.mk
23endif
24