2005-04-19 13:53:51 +00:00
|
|
|
#
|
|
|
|
# Makefile for the security policy.
|
|
|
|
#
|
|
|
|
# Targets:
|
|
|
|
#
|
|
|
|
# install - compile and install the policy configuration, and context files.
|
|
|
|
# load - compile, install, and load the policy configuration.
|
|
|
|
# reload - compile, install, and load/reload the policy configuration.
|
|
|
|
# relabel - relabel filesystems based on the file contexts configuration.
|
|
|
|
# checklabels - check filesystems against the file context configuration
|
|
|
|
# restorelabels - check filesystems against the file context configuration
|
|
|
|
# and restore the label of files with incorrect labels
|
|
|
|
# policy - compile the policy configuration locally for testing/development.
|
|
|
|
#
|
|
|
|
# The default target is 'policy'.
|
|
|
|
#
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Configurable portions of the Makefile
|
|
|
|
#
|
|
|
|
|
2005-07-13 18:08:12 +00:00
|
|
|
# Policy version
|
|
|
|
# By default, checkpolicy will create the highest
|
|
|
|
# version policy it supports. Setting this will
|
|
|
|
# override the version.
|
2005-07-06 15:23:28 +00:00
|
|
|
#OUTPUT_POLICY = 18
|
2005-06-01 15:40:37 +00:00
|
|
|
|
2005-06-06 18:13:38 +00:00
|
|
|
# Policy Type
|
2005-09-21 14:49:41 +00:00
|
|
|
# strict, targeted,
|
|
|
|
# strict-mls, targeted-mls,
|
|
|
|
# strict-mcs, targeted-mcs
|
2005-06-06 18:13:38 +00:00
|
|
|
TYPE = strict
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2005-07-13 18:08:12 +00:00
|
|
|
# Policy Name
|
2005-06-06 18:13:38 +00:00
|
|
|
# If set, this will be used as the policy
|
|
|
|
# name. Otherwise the policy type will be
|
|
|
|
# used for the name.
|
2005-07-06 15:23:28 +00:00
|
|
|
NAME = refpolicy
|
2005-06-06 18:13:38 +00:00
|
|
|
|
2005-07-13 18:08:12 +00:00
|
|
|
# Distribution
|
|
|
|
# Some distributions have portions of policy
|
|
|
|
# for programs or configurations specific to the
|
|
|
|
# distribution. Setting this will enable options
|
|
|
|
# for the distribution.
|
|
|
|
# redhat, gentoo, debian, and suse are current options.
|
|
|
|
# Fedora users should enable redhat.
|
|
|
|
#DISTRO = redhat
|
|
|
|
|
2005-09-21 14:49:41 +00:00
|
|
|
# Direct admin init
|
|
|
|
# Setting this will allow sysadm to directly
|
|
|
|
# run init scripts, instead of requring run_init.
|
|
|
|
# This is a build option, as role transitions do
|
|
|
|
# not work in conditional policy.
|
|
|
|
DIRECT_INITRC=n
|
|
|
|
|
2005-06-06 18:13:38 +00:00
|
|
|
# Build monolithic policy. Putting n here
|
|
|
|
# will build a loadable module policy.
|
|
|
|
MONOLITHIC=y
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
# Uncomment this to disable command echoing
|
|
|
|
#QUIET:=@
|
|
|
|
|
|
|
|
########################################
|
|
|
|
#
|
2005-06-06 18:13:38 +00:00
|
|
|
# NO OPTIONS BELOW HERE
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# executable paths
|
|
|
|
PREFIX := /usr
|
|
|
|
BINDIR := $(PREFIX)/bin
|
|
|
|
SBINDIR := $(PREFIX)/sbin
|
|
|
|
CHECKPOLICY := $(BINDIR)/checkpolicy
|
2005-08-18 21:27:20 +00:00
|
|
|
CHECKMODULE := $(BINDIR)/checkmodule
|
|
|
|
SEMOD_PKG := $(BINDIR)/semodule_package
|
2005-05-24 20:44:31 +00:00
|
|
|
LOADPOLICY := $(SBINDIR)/load_policy
|
2005-04-14 20:18:17 +00:00
|
|
|
SETFILES := $(SBINDIR)/setfiles
|
2005-06-14 18:13:55 +00:00
|
|
|
GENHOMEDIRCON := $(SBINDIR)/genhomedircon
|
2005-08-18 21:27:20 +00:00
|
|
|
XMLLINT := $(BINDIR)/xmllint
|
2005-06-01 19:01:00 +00:00
|
|
|
|
2005-06-15 14:08:18 +00:00
|
|
|
CFLAGS := -Wall
|
|
|
|
|
2005-08-18 21:27:20 +00:00
|
|
|
# policy source layout
|
2005-08-22 17:07:17 +00:00
|
|
|
POLDIR := policy
|
|
|
|
MODDIR := $(POLDIR)/modules
|
|
|
|
FLASKDIR := $(POLDIR)/flask
|
|
|
|
SECCLASS := $(FLASKDIR)/security_classes
|
|
|
|
ISIDS := $(FLASKDIR)/initial_sids
|
|
|
|
AVS := $(FLASKDIR)/access_vectors
|
2005-08-18 21:27:20 +00:00
|
|
|
|
|
|
|
# policy building support tools
|
2005-06-07 18:35:18 +00:00
|
|
|
SUPPORT := support
|
2005-06-23 19:55:23 +00:00
|
|
|
GENXML := $(SUPPORT)/segenxml.py
|
2005-06-07 18:35:18 +00:00
|
|
|
GENDOC := $(SUPPORT)/sedoctool.py
|
2005-08-22 17:07:17 +00:00
|
|
|
GENPERM := $(SUPPORT)/genclassperms.py
|
2005-06-07 18:45:47 +00:00
|
|
|
FCSORT := $(SUPPORT)/fc_sort
|
2005-06-08 13:44:23 +00:00
|
|
|
SETTUN := $(SUPPORT)/set_tunables
|
2005-06-07 18:35:18 +00:00
|
|
|
|
2005-08-18 21:27:20 +00:00
|
|
|
# documentation paths
|
|
|
|
DOCS = doc
|
|
|
|
POLXML = $(DOCS)/policy.xml
|
|
|
|
XMLDTD = $(DOCS)/policy.dtd
|
|
|
|
LAYERXML = metadata.xml
|
|
|
|
HTMLDIR = $(DOCS)/html
|
|
|
|
DOCTEMPLATE = $(DOCS)/templates
|
|
|
|
|
|
|
|
# config file paths
|
|
|
|
GLOBALTUN := $(POLDIR)/global_tunables
|
2005-10-07 18:08:50 +00:00
|
|
|
GLOBALBOOL := $(POLDIR)/global_booleans
|
2005-08-18 21:27:20 +00:00
|
|
|
MOD_CONF := $(POLDIR)/modules.conf
|
|
|
|
TUNABLES := $(POLDIR)/tunables.conf
|
2005-10-07 18:08:50 +00:00
|
|
|
BOOLEANS := $(POLDIR)/booleans.conf
|
2005-08-18 21:27:20 +00:00
|
|
|
|
|
|
|
# install paths
|
|
|
|
TOPDIR = $(DESTDIR)/etc/selinux
|
|
|
|
INSTALLDIR = $(TOPDIR)/$(NAME)
|
|
|
|
SRCPATH = $(INSTALLDIR)/src
|
|
|
|
USERPATH = $(INSTALLDIR)/users
|
|
|
|
CONTEXTPATH = $(INSTALLDIR)/contexts
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2005-06-01 15:40:37 +00:00
|
|
|
# enable MLS if requested.
|
2005-09-16 13:36:26 +00:00
|
|
|
ifneq ($(findstring -mls,$(TYPE)),)
|
2005-06-01 15:40:37 +00:00
|
|
|
override M4PARAM += -D enable_mls
|
|
|
|
CHECKPOLICY += -M
|
2005-08-18 21:27:20 +00:00
|
|
|
CHECKMODULE += -M
|
2005-06-01 15:40:37 +00:00
|
|
|
endif
|
|
|
|
|
2005-09-16 13:36:26 +00:00
|
|
|
# enable MLS if MCS requested.
|
|
|
|
ifneq ($(findstring -mcs,$(TYPE)),)
|
|
|
|
override M4PARAM += -D enable_mcs
|
|
|
|
CHECKPOLICY += -M
|
|
|
|
CHECKMODULE += -M
|
|
|
|
endif
|
|
|
|
|
2005-06-06 18:13:38 +00:00
|
|
|
# compile targeted policy if requested.
|
|
|
|
ifneq ($(findstring targeted,$(TYPE)),)
|
|
|
|
override M4PARAM += -D targeted_policy
|
|
|
|
endif
|
|
|
|
|
2005-07-13 18:08:12 +00:00
|
|
|
# enable distribution-specific policy
|
|
|
|
ifneq ($(DISTRO),)
|
|
|
|
override M4PARAM += -D distro_$(DISTRO)
|
|
|
|
endif
|
|
|
|
|
2005-06-06 18:13:38 +00:00
|
|
|
ifneq ($(OUTPUT_POLICY),)
|
|
|
|
CHECKPOLICY += -c $(OUTPUT_POLICY)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(NAME),)
|
|
|
|
NAME := $(TYPE)
|
2005-06-01 15:40:37 +00:00
|
|
|
endif
|
|
|
|
|
2005-09-21 14:49:41 +00:00
|
|
|
ifeq ($(DIRECT_INITRC),y)
|
|
|
|
override M4PARAM += -D direct_sysadm_daemon
|
|
|
|
endif
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
# determine the policy version and current kernel version if possible
|
2005-06-01 15:40:37 +00:00
|
|
|
PV := $(shell $(CHECKPOLICY) -V |cut -f 1 -d ' ')
|
2005-04-14 20:18:17 +00:00
|
|
|
KV := $(shell cat /selinux/policyvers)
|
|
|
|
|
|
|
|
# dont print version warnings if we are unable to determine
|
|
|
|
# the currently running kernel's policy version
|
|
|
|
ifeq ($(KV),)
|
2005-06-01 15:40:37 +00:00
|
|
|
KV := $(PV)
|
2005-04-14 20:18:17 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
FC := file_contexts
|
|
|
|
POLVER := policy.$(PV)
|
|
|
|
|
2005-08-18 21:27:20 +00:00
|
|
|
M4SUPPORT = $(wildcard $(POLDIR)/support/*.spt)
|
2005-06-07 15:11:47 +00:00
|
|
|
|
2005-09-20 14:20:02 +00:00
|
|
|
APPCONF := config/appconfig-$(TYPE)
|
2005-05-25 20:58:09 +00:00
|
|
|
APPDIR := $(CONTEXTPATH)
|
2005-06-14 18:13:55 +00:00
|
|
|
APPFILES := $(addprefix $(APPDIR)/,default_contexts default_type initrc_context failsafe_context userhelper_context removable_context dbus_contexts customizable_types) $(CONTEXTPATH)/files/media $(INSTALLDIR)/booleans
|
2005-06-01 17:27:56 +00:00
|
|
|
CONTEXTFILES += $(wildcard $(APPCONF)/*_context*) $(APPCONF)/media
|
2005-09-12 15:17:39 +00:00
|
|
|
USER_FILES := $(POLDIR)/systemuser $(POLDIR)/users
|
2005-05-25 20:58:09 +00:00
|
|
|
|
2005-06-20 18:40:44 +00:00
|
|
|
ALL_LAYERS := $(filter-out $(MODDIR)/CVS,$(shell find $(wildcard $(MODDIR)/*) -maxdepth 0 -type d))
|
2005-06-08 22:14:26 +00:00
|
|
|
|
|
|
|
GENERATED_TE := $(basename $(foreach dir,$(ALL_LAYERS),$(wildcard $(dir)/*.te.in)))
|
|
|
|
GENERATED_IF := $(basename $(foreach dir,$(ALL_LAYERS),$(wildcard $(dir)/*.if.in)))
|
|
|
|
GENERATED_FC := $(basename $(foreach dir,$(ALL_LAYERS),$(wildcard $(dir)/*.fc.in)))
|
|
|
|
|
2005-06-14 18:39:55 +00:00
|
|
|
# sort here since it removes duplicates, which can happen
|
|
|
|
# when a generated file is already generated
|
|
|
|
DETECTED_MODS := $(sort $(foreach dir,$(ALL_LAYERS),$(wildcard $(dir)/*.te)) $(GENERATED_TE))
|
2005-06-28 17:31:18 +00:00
|
|
|
|
2005-08-18 21:27:20 +00:00
|
|
|
# modules.conf setting for base module
|
2005-07-05 19:42:11 +00:00
|
|
|
MODBASE := base
|
2005-08-18 21:27:20 +00:00
|
|
|
|
|
|
|
# modules.conf setting for module
|
2005-07-05 19:42:11 +00:00
|
|
|
MODMOD := module
|
2005-08-18 21:27:20 +00:00
|
|
|
|
|
|
|
# extract settings from modules.conf
|
2005-07-06 15:24:45 +00:00
|
|
|
BASE_MODS := $(foreach mod,$(shell awk '/^[[:blank:]]*[[:alpha:]]/{ if ($$3 == "$(MODBASE)") print $$1 }' $(MOD_CONF) 2> /dev/null),$(subst ./,,$(shell find -iname $(mod).te)))
|
|
|
|
MOD_MODS := $(foreach mod,$(shell awk '/^[[:blank:]]*[[:alpha:]]/{ if ($$3 == "$(MODMOD)") print $$1 }' $(MOD_CONF) 2> /dev/null),$(subst ./,,$(shell find -iname $(mod).te)))
|
2005-07-05 19:42:11 +00:00
|
|
|
|
2005-09-12 15:17:39 +00:00
|
|
|
HOMEDIR_TEMPLATE = tmp/homedir_template
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
|
|
|
#
|
2005-08-18 21:27:20 +00:00
|
|
|
# Load appropriate rules
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
|
|
|
|
2005-08-18 21:27:20 +00:00
|
|
|
ifeq ($(MONOLITHIC),y)
|
|
|
|
include Rules.monolithic
|
|
|
|
else
|
|
|
|
include Rules.modular
|
2005-04-14 20:18:17 +00:00
|
|
|
endif
|
|
|
|
|
2005-04-19 13:53:51 +00:00
|
|
|
########################################
|
|
|
|
#
|
2005-08-18 21:27:20 +00:00
|
|
|
# Generated files
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-08 21:46:39 +00:00
|
|
|
$(MODDIR)/kernel/corenetwork.if: $(MODDIR)/kernel/corenetwork.if.m4 $(MODDIR)/kernel/corenetwork.if.in
|
2005-06-13 18:40:08 +00:00
|
|
|
@echo "#" > $@
|
|
|
|
@echo "# This is a generated file! Instead of modifying this file, the" >> $@
|
|
|
|
@echo "# $(notdir $@).in or $(notdir $@).m4 file should be modified." >> $@
|
|
|
|
@echo "#" >> $@
|
|
|
|
$(QUIET) cat $(MODDIR)/kernel/corenetwork.if.in >> $@
|
2005-06-08 21:46:39 +00:00
|
|
|
$(QUIET) egrep "^[[:blank:]]*network_(interface|node|port)\(.*\)" $(@:.if=.te).in \
|
2005-09-21 13:26:30 +00:00
|
|
|
| m4 -D self_contained_policy $(M4PARAM) $(M4SUPPORT) $(MODDIR)/kernel/corenetwork.if.m4 - \
|
2005-06-08 21:46:39 +00:00
|
|
|
| sed -e 's/dollarsone/\$$1/g' -e 's/dollarszero/\$$0/g' >> $@
|
|
|
|
|
|
|
|
$(MODDIR)/kernel/corenetwork.te: $(MODDIR)/kernel/corenetwork.te.m4 $(MODDIR)/kernel/corenetwork.te.in
|
2005-06-13 18:40:08 +00:00
|
|
|
@echo "#" > $@
|
|
|
|
@echo "# This is a generated file! Instead of modifying this file, the" >> $@
|
|
|
|
@echo "# $(notdir $@).in or $(notdir $@).m4 file should be modified." >> $@
|
|
|
|
@echo "#" >> $@
|
2005-09-21 13:26:30 +00:00
|
|
|
$(QUIET) m4 -D self_contained_policy $(M4PARAM) $(M4SUPPORT) $^ \
|
2005-06-13 18:40:08 +00:00
|
|
|
| sed -e 's/dollarsone/\$$1/g' -e 's/dollarszero/\$$0/g' >> $@
|
2005-06-08 21:46:39 +00:00
|
|
|
|
2005-06-08 13:44:23 +00:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Create config files
|
|
|
|
#
|
2005-10-07 18:08:50 +00:00
|
|
|
conf: $(MOD_CONF) $(BOOLEANS) $(GENERATED_TE) $(GENERATED_IF) $(GENERATED_FC)
|
2005-06-14 15:54:55 +00:00
|
|
|
|
2005-10-07 18:08:50 +00:00
|
|
|
$(MOD_CONF) $(BOOLEANS): $(POLXML)
|
|
|
|
@echo "Updating $(MOD_CONF) and $(BOOLEANS)"
|
|
|
|
$(QUIET) cd $(DOCS) && ../$(GENDOC) -t ../$(BOOLEANS) -m ../$(MOD_CONF) -x ../$(POLXML)
|
2005-06-08 13:44:23 +00:00
|
|
|
|
2005-05-18 20:58:13 +00:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Documentation generation
|
|
|
|
#
|
|
|
|
|
2005-06-14 15:54:55 +00:00
|
|
|
# minimal dependencies here, because we don't want to rebuild
|
2005-06-08 13:44:23 +00:00
|
|
|
# this and its dependents every time the dependencies
|
2005-06-28 17:31:18 +00:00
|
|
|
# change. Also use all .if files here, rather then just the
|
|
|
|
# enabled modules.
|
2005-06-29 16:54:13 +00:00
|
|
|
$(POLXML): $(DETECTED_MODS:.te=.if) $(foreach dir,$(ALL_LAYERS),$(dir)/$(LAYERXML))
|
2005-05-24 17:31:39 +00:00
|
|
|
@echo "Creating $@"
|
2005-06-08 13:44:23 +00:00
|
|
|
@mkdir -p tmp
|
2005-06-01 18:34:34 +00:00
|
|
|
$(QUIET) echo '<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>' > $@
|
2005-06-23 19:55:23 +00:00
|
|
|
$(QUIET) echo '<!DOCTYPE policy SYSTEM "$(notdir $(XMLDTD))">' >> $@
|
2005-10-07 18:08:50 +00:00
|
|
|
$(QUIET) $(GENXML) -w -m $(LAYERXML) -t $(GLOBALTUN) -b $(GLOBALBOOL) $(ALL_LAYERS) >> $@
|
2005-06-01 19:01:00 +00:00
|
|
|
$(QUIET) if test -x $(XMLLINT) && test -f $(XMLDTD); then \
|
|
|
|
$(XMLLINT) --noout --dtdvalid $(XMLDTD) $@ ;\
|
2005-06-01 18:34:34 +00:00
|
|
|
fi
|
2005-05-18 20:58:13 +00:00
|
|
|
|
2005-06-13 12:55:56 +00:00
|
|
|
html: $(POLXML)
|
2005-06-09 19:02:52 +00:00
|
|
|
@mkdir -p $(HTMLDIR)
|
2005-06-13 12:55:56 +00:00
|
|
|
$(QUIET) cd $(DOCS) && ../$(GENDOC) -d ../$(HTMLDIR) -T ../$(DOCTEMPLATE) -x ../$(POLXML)
|
2005-06-09 19:02:52 +00:00
|
|
|
$(QUIET) cp $(DOCTEMPLATE)/*.css $(HTMLDIR)
|
|
|
|
|
2005-05-25 20:58:09 +00:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Runtime binary policy patching of users
|
|
|
|
#
|
2005-09-22 14:31:30 +00:00
|
|
|
$(USERPATH)/system.users: $(M4SUPPORT) tmp/generated_definitions.conf $(USER_FILES)
|
2005-05-25 20:58:09 +00:00
|
|
|
@mkdir -p $(USERPATH)
|
|
|
|
@echo "Installing system.users"
|
|
|
|
@echo "# " > tmp/system.users
|
|
|
|
@echo "# Do not edit this file. " >> tmp/system.users
|
|
|
|
@echo "# This file is replaced on reinstalls of this policy." >> tmp/system.users
|
|
|
|
@echo "# Please edit local.users to make local changes." >> tmp/system.users
|
|
|
|
@echo "#" >> tmp/system.users
|
2005-09-22 14:31:30 +00:00
|
|
|
$(QUIET) m4 -D self_contained_policy $(M4PARAM) $^ | \
|
2005-09-22 14:42:49 +00:00
|
|
|
egrep -v "^[[:blank:]]*($$|#)" | \
|
|
|
|
sed -r -e 's/^[[:blank:]]+//' >> tmp/system.users
|
2005-05-25 20:58:09 +00:00
|
|
|
$(QUIET) install -m 644 tmp/system.users $@
|
|
|
|
|
2005-06-14 18:13:55 +00:00
|
|
|
$(USERPATH)/local.users: config/local.users
|
2005-05-25 20:58:09 +00:00
|
|
|
@mkdir -p $(USERPATH)
|
|
|
|
@echo "Installing local.users"
|
2005-06-15 14:08:18 +00:00
|
|
|
$(QUIET) install -b -m 644 $< $@
|
2005-05-25 20:58:09 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Appconfig files
|
|
|
|
#
|
|
|
|
install-appconfig: $(APPFILES)
|
|
|
|
|
2005-10-07 18:08:50 +00:00
|
|
|
$(INSTALLDIR)/booleans: $(BOOLEANS)
|
2005-06-14 18:13:55 +00:00
|
|
|
@mkdir -p $(INSTALLDIR)
|
2005-10-07 18:08:50 +00:00
|
|
|
$(QUIET) egrep '^[[:blank:]]*[[:alpha:]]' $(BOOLEANS) \
|
2005-06-14 18:13:55 +00:00
|
|
|
| sed -e 's/false/0/g' -e 's/true/1/g' > tmp/booleans
|
|
|
|
$(QUIET) install -m 644 tmp/booleans $@
|
|
|
|
|
2005-06-01 17:27:56 +00:00
|
|
|
$(CONTEXTPATH)/files/media: $(APPCONF)/media
|
2005-06-14 18:13:55 +00:00
|
|
|
@mkdir -p $(CONTEXTPATH)/files/
|
|
|
|
$(QUIET) install -m 644 $< $@
|
2005-05-25 20:58:09 +00:00
|
|
|
|
2005-06-01 17:27:56 +00:00
|
|
|
$(APPDIR)/default_contexts: $(APPCONF)/default_contexts
|
2005-06-14 18:13:55 +00:00
|
|
|
@mkdir -p $(APPDIR)
|
|
|
|
$(QUIET) install -m 644 $< $@
|
2005-05-25 20:58:09 +00:00
|
|
|
|
2005-06-01 17:27:56 +00:00
|
|
|
$(APPDIR)/removable_context: $(APPCONF)/removable_context
|
2005-06-14 18:13:55 +00:00
|
|
|
@mkdir -p $(APPDIR)
|
|
|
|
$(QUIET) install -m 644 $< $@
|
2005-05-25 20:58:09 +00:00
|
|
|
|
|
|
|
$(APPDIR)/customizable_types: policy.conf
|
2005-06-14 18:13:55 +00:00
|
|
|
@mkdir -p $(APPDIR)
|
|
|
|
$(QUIET) grep "^type .*customizable" $< | cut -d',' -f1 | cut -d' ' -f2 > tmp/customizable_types
|
|
|
|
$(QUIET) install -m 644 tmp/customizable_types $@
|
2005-05-25 20:58:09 +00:00
|
|
|
|
2005-06-01 17:27:56 +00:00
|
|
|
$(APPDIR)/default_type: $(APPCONF)/default_type
|
2005-06-14 18:13:55 +00:00
|
|
|
@mkdir -p $(APPDIR)
|
|
|
|
$(QUIET) install -m 644 $< $@
|
2005-05-25 20:58:09 +00:00
|
|
|
|
2005-06-01 17:27:56 +00:00
|
|
|
$(APPDIR)/userhelper_context: $(APPCONF)/userhelper_context
|
2005-06-14 18:13:55 +00:00
|
|
|
@mkdir -p $(APPDIR)
|
|
|
|
$(QUIET) install -m 644 $< $@
|
2005-05-25 20:58:09 +00:00
|
|
|
|
2005-06-01 17:27:56 +00:00
|
|
|
$(APPDIR)/initrc_context: $(APPCONF)/initrc_context
|
2005-06-14 18:13:55 +00:00
|
|
|
@mkdir -p $(APPDIR)
|
|
|
|
$(QUIET) install -m 644 $< $@
|
2005-05-25 20:58:09 +00:00
|
|
|
|
2005-06-01 17:27:56 +00:00
|
|
|
$(APPDIR)/failsafe_context: $(APPCONF)/failsafe_context
|
2005-06-14 18:13:55 +00:00
|
|
|
@mkdir -p $(APPDIR)
|
|
|
|
$(QUIET) install -m 644 $< $@
|
2005-05-25 20:58:09 +00:00
|
|
|
|
2005-06-01 17:27:56 +00:00
|
|
|
$(APPDIR)/dbus_contexts: $(APPCONF)/dbus_contexts
|
2005-06-14 18:13:55 +00:00
|
|
|
@mkdir -p $(APPDIR)
|
|
|
|
$(QUIET) install -m 644 $< $@
|
2005-05-25 20:58:09 +00:00
|
|
|
|
2005-06-01 17:27:56 +00:00
|
|
|
$(APPDIR)/users/root: $(APPCONF)/root_default_contexts
|
2005-06-14 18:13:55 +00:00
|
|
|
@mkdir -p $(APPDIR)/users
|
|
|
|
$(QUIET) install -m 644 $< $@
|
2005-05-25 20:58:09 +00:00
|
|
|
|
2005-06-15 14:14:20 +00:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Install policy sources
|
|
|
|
#
|
|
|
|
install-src:
|
|
|
|
rm -rf $(SRCPATH)/policy.old
|
|
|
|
-mv $(SRCPATH)/policy $(SRCPATH)/policy.old
|
|
|
|
mkdir -p $(SRCPATH)/policy
|
|
|
|
cp -R . $(SRCPATH)/policy
|
|
|
|
|
2005-06-15 15:45:54 +00:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Clean everything
|
|
|
|
#
|
2005-06-07 15:11:47 +00:00
|
|
|
bare: clean
|
2005-06-13 12:55:56 +00:00
|
|
|
rm -f $(POLXML)
|
2005-06-07 18:45:47 +00:00
|
|
|
rm -f $(SUPPORT)/*.pyc
|
|
|
|
rm -f $(FCSORT)
|
2005-06-28 17:31:18 +00:00
|
|
|
rm -f $(MOD_CONF)
|
2005-10-07 18:08:50 +00:00
|
|
|
rm -f $(BOOLEANS)
|
2005-06-09 19:02:52 +00:00
|
|
|
rm -fR $(HTMLDIR)
|
2005-06-08 22:14:26 +00:00
|
|
|
ifneq ($(GENERATED_TE),)
|
|
|
|
rm -f $(GENERATED_TE)
|
|
|
|
endif
|
|
|
|
ifneq ($(GENERATED_IF),)
|
|
|
|
rm -f $(GENERATED_IF)
|
|
|
|
endif
|
|
|
|
ifneq ($(GENERATED_FC),)
|
|
|
|
rm -f $(GENERATED_FC)
|
|
|
|
endif
|
2005-06-07 15:11:47 +00:00
|
|
|
|
2005-08-18 21:27:20 +00:00
|
|
|
.PHONY: install-src install-appconfig conf html bare
|