37d7897106
[Thomas: - Indicate in the Config.in help text that this policy compiler is SELinux related. - Rewrap Config.in help text and remove trailing white space. - Add a comment in the .mk file to indicate why we're passing DESTDIR= at build time.] Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
894 B
Makefile
28 lines
894 B
Makefile
################################################################################
|
|
#
|
|
# checkpolicy
|
|
#
|
|
################################################################################
|
|
|
|
CHECKPOLICY_VERSION = 2.1.12
|
|
CHECKPOLICY_SITE = https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20130423
|
|
CHECKPOLICY_LICENSE = GPLv2
|
|
CHECKPOLICY_LICENSE_FILES = COPYING
|
|
|
|
HOST_CHECKPOLICY_DEPENDENCIES = host-libselinux host-flex host-bison
|
|
|
|
HOST_CHECKPOLICY_MAKE_OPTS = $(HOST_CONFIGURE_OPTS) \
|
|
LEX="$(HOST_DIR)/usr/bin/flex" \
|
|
YACC="$(HOST_DIR)/usr/bin/bison -y"
|
|
|
|
# DESTDIR is used at build time to find host-libselinux
|
|
define HOST_CHECKPOLICY_BUILD_CMDS
|
|
$(MAKE) -C $(@D) $(HOST_CHECKPOLICY_MAKE_OPTS) DESTDIR=$(HOST_DIR)
|
|
endef
|
|
|
|
define HOST_CHECKPOLICY_INSTALL_CMDS
|
|
$(MAKE) -C $(@D) $(HOST_CHECKPOLICY_MAKE_OPTS) DESTDIR=$(HOST_DIR) install
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|