mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
e7880e5d39
The lo_oid function provided by this extension is PARALLEL SAFE. Andreas Karlsson
19 lines
396 B
Makefile
19 lines
396 B
Makefile
# contrib/lo/Makefile
|
|
|
|
MODULES = lo
|
|
|
|
EXTENSION = lo
|
|
DATA = lo--1.1.sql lo--1.0--1.1.sql lo--unpackaged--1.0.sql
|
|
PGFILEDESC = "lo - management for large objects"
|
|
|
|
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
|