c89625db93
SELinux Project contribution of mcstrans. mcstrans is a userland package specific to SELinux which allows system administrators to define sensitivity levels and categories and provides a daemon for their translation into human readable form. This version is a merge of Joe Nalls git tree ( http://github.com/joenall/mcstrans) and patches supplied by Dan Walsh and others at RedHat. Ted Signed-off-by: Steve Lawrence <slawrence@tresys.com>
16 lines
219 B
Makefile
16 lines
219 B
Makefile
all:
|
|
$(MAKE) -C src
|
|
$(MAKE) -C utils
|
|
|
|
install:
|
|
$(MAKE) -C src install
|
|
# $(MAKE) -C utils install
|
|
$(MAKE) -C man install
|
|
|
|
clean:
|
|
rm -f *~ \#*
|
|
$(MAKE) -C src clean
|
|
$(MAKE) -C utils clean
|
|
$(MAKE) -C man clean
|
|
|
|
|