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