mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
24bc6b3db3
Instead, document how to build it manually. Per discussion. KaiGai Kohei, with some wordsmithing by me.
23 lines
584 B
Makefile
23 lines
584 B
Makefile
# contrib/sepgsql/Makefile
|
|
|
|
MODULE_big = sepgsql
|
|
OBJS = hooks.o selinux.o label.o dml.o \
|
|
schema.o relation.o proc.o
|
|
DATA_built = sepgsql.sql
|
|
REGRESS = label dml misc
|
|
EXTRA_CLEAN = -r tmp *.pp sepgsql-regtest.if sepgsql-regtest.fc
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/sepgsql
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|
|
|
|
SHLIB_LINK += $(filter -lselinux, $(LIBS))
|
|
REGRESS_OPTS += --launcher $(top_builddir)/contrib/sepgsql/launcher
|