selinux/secilc
Stephen Smalley b35f8536dd Add an empty relabel target to secilc Makfile.
So that building from top-level as per the README does not
fail when it reaches the secilc directory.

Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
2015-04-10 09:50:57 -04:00
..
docs libsepol: Move secilc out of libsepol 2015-03-31 12:31:38 -04:00
test libsepol: Move secilc out of libsepol 2015-03-31 12:31:38 -04:00
.gitignore libsepol: Move secilc out of libsepol 2015-03-31 12:31:38 -04:00
Android.mk libsepol, secilc: Fix build for Android 2015-04-02 12:01:10 -04:00
COPYING libsepol: Move secilc out of libsepol 2015-03-31 12:31:38 -04:00
ChangeLog Add VERSION and (empty) ChangeLog files to secilc. 2015-03-31 12:40:24 -04:00
Makefile Add an empty relabel target to secilc Makfile. 2015-04-10 09:50:57 -04:00
README libsepol: Move secilc out of libsepol 2015-03-31 12:31:38 -04:00
VERSION Add VERSION and (empty) ChangeLog files to secilc. 2015-03-31 12:40:24 -04:00
secilc.8.xml libsepol: Move secilc out of libsepol 2015-03-31 12:31:38 -04:00
secilc.c libsepol, secilc: Fix build for Android 2015-04-02 12:01:10 -04:00

README

SELinux Common Intermediate Language (CIL) Compiler

INTRODUCTION

	The SELinux CIL Compiler is a compiler that converts the CIL language as
	described on the CIL design wiki into a kernel binary policy file.
	Please see the CIL Design Wiki at:
	http://github.com/SELinuxProject/cil/wiki/
	for more information about the goals and features on the CIL language.

DEPENDENCIES

	gcc >= 4.5.1
	libsepol >= 2.4


BUILD STEPS

	Run "make" with one of the following targets:

	make
		Build the CIL compiler (secilc).

	make test
		Pass a sample policy to test with the compiler.

	make install
		Install the secilc compiler and man page to disk.

	make clean
		Remove temporary build files.

	make man
		Build the secilc man page.

	make bare
		Remove temporary build files and compile binaries.


USAGE

	Execute 'secilc' with any number of CIL files as arguments. A binary policy and
	file_contexts file will be created.

	Use the '--help' option for more details.


DOCUMENTATION

	There is a Docbook CIL Reference Guide in the docs directory, to build
	this in HTML and PDF format change to the docs directory and run:
		make html pdf

	There is also an secilc man page that can be built with:
		make man

	The documents will be located in the docs/html, docs/pdf and docs/man8
	directories.

	To build the html and manpage the xmlto package is required.
	To build the pdf document the xmlto and dblatex packages are required.


KNOWN ISSUES

	- Blocks inside of macros causes undefined behavior

	- Policy must be well formed. For example, invalid usage of
	  sensitivities/categories/levels may create an unloaded binary

	- Recursive limits are not handled