mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
968bc6fac9
This is still pretty rough - among other things, the documentation needs work, and the messages need a visit from the style police - but this gets the basic framework in place. KaiGai Kohei
26 lines
702 B
Makefile
26 lines
702 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 sepgsql-regtest.pp
|
|
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
|
|
|
|
sepgsql-regtest.pp: sepgsql-regtest.te
|
|
$(MAKE) -f $(DESTDIR)/usr/share/selinux/devel/Makefile $@
|