2011-01-24 09:44:48 +08:00
|
|
|
# contrib/sepgsql/Makefile
|
|
|
|
|
|
|
|
MODULE_big = sepgsql
|
2011-09-01 20:37:33 +08:00
|
|
|
OBJS = hooks.o selinux.o uavc.o label.o dml.o \
|
2011-01-24 09:44:48 +08:00
|
|
|
schema.o relation.o proc.o
|
2011-02-17 19:39:13 +08:00
|
|
|
DATA_built = sepgsql.sql
|
2011-08-25 03:16:17 +08:00
|
|
|
|
2011-01-24 09:44:48 +08:00
|
|
|
REGRESS = label dml misc
|
2011-07-25 22:51:02 +08:00
|
|
|
REGRESS_PREP = check_selinux_environment
|
2011-08-25 03:16:17 +08:00
|
|
|
REGRESS_OPTS = --launcher $(top_builddir)/contrib/sepgsql/launcher
|
|
|
|
|
2011-01-24 09:44:48 +08:00
|
|
|
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
|
|
|
|
|
2011-08-19 23:57:38 +08:00
|
|
|
SHLIB_LINK += -lselinux
|
2011-07-25 22:51:02 +08:00
|
|
|
|
|
|
|
check_selinux_environment:
|
|
|
|
@$(top_builddir)/contrib/sepgsql/chkselinuxenv "$(bindir)" "$(datadir)"
|