21 lines
386 B
Makefile
21 lines
386 B
Makefile
# contrib/lo/Makefile
|
|
|
|
MODULES = lo
|
|
|
|
EXTENSION = lo
|
|
DATA = lo--1.1.sql lo--1.0--1.1.sql
|
|
PGFILEDESC = "lo - management for large objects"
|
|
|
|
REGRESS = lo
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/lo
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|