mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 16:35:02 +01:00
75 lines
2.5 KiB
Makefile
75 lines
2.5 KiB
Makefile
# $Id$
|
|
# ----------------------------------------------------------------------
|
|
# Copyright (c) 1999, 2004, 2005, 2006 NOVELL (All rights reserved)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of version 2 of the GNU General Public
|
|
# License published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, contact Novell, Inc.
|
|
# ----------------------------------------------------------------------
|
|
NAME = apparmor-utils
|
|
all:
|
|
COMMONDIR=../common/
|
|
|
|
include common/Make.rules
|
|
|
|
COMMONDIR_EXISTS=$(strip $(shell [ -d ${COMMONDIR} ] && echo true))
|
|
ifeq ($(COMMONDIR_EXISTS), true)
|
|
common/Make.rules: $(COMMONDIR)/Make.rules
|
|
ln -sf $(COMMONDIR) .
|
|
endif
|
|
|
|
TOOLS = genprof logprof autodep audit complain enforce \
|
|
unconfined aa-eventd apparmor_status
|
|
|
|
AA_MANPAGES = autodep.8 complain.8 enforce.8 logprof.8 genprof.8 unconfined.8 audit.8
|
|
MANPAGES = ${AA_MANPAGES} logprof.conf.5 apparmor_status.8
|
|
|
|
all: ${MANPAGES} ${HTMLMANPAGES}
|
|
make -C po all
|
|
|
|
# need some better way of determining this
|
|
DESTDIR=/
|
|
BINDIR=${DESTDIR}/usr/sbin
|
|
CONFDIR=${DESTDIR}/etc/apparmor
|
|
PERLDIR=${DESTDIR}/usr/lib/perl5/vendor_perl/Immunix
|
|
|
|
po/${NAME}.pot: ${TOOLS}
|
|
make -C po ${NAME}.pot NAME=${NAME} SOURCES="${TOOLS} SubDomain.pm Reports.pm"
|
|
|
|
.PHONY: install
|
|
install: ${MANPAGES} ${HTMLMANPAGES}
|
|
install -d ${CONFDIR}
|
|
install -m 644 logprof.conf severity.db ${CONFDIR}
|
|
install -d ${BINDIR}
|
|
ln -sf apparmor_status ${BINDIR}/aa-status
|
|
ln -sf audit ${BINDIR}/aa-audit
|
|
ln -sf autodep ${BINDIR}/aa-autodep
|
|
ln -sf complain ${BINDIR}/aa-complain
|
|
ln -sf enforce ${BINDIR}/aa-enforce
|
|
ln -sf genprof ${BINDIR}/aa-genprof
|
|
ln -sf logprof ${BINDIR}/aa-logprof
|
|
ln -sf unconfined ${BINDIR}/aa-unconfined
|
|
install -m 755 ${TOOLS} ${BINDIR}
|
|
install -d ${PERLDIR}
|
|
install -m 755 SubDomain.pm Reports.pm Severity.pm ${PERLDIR}
|
|
make -C po install DESTDIR=${DESTDIR} NAME=${NAME}
|
|
mkdir -m 0700 -p $(DESTDIR)/var/log/apparmor
|
|
make install_manpages DESTDIR=${DESTDIR}
|
|
# special case for apparmor_status
|
|
ln -sf apparmor_status.8 ${DESTDIR}/${MANDIR}/man8/aa-status.8
|
|
|
|
.PHONY: clean
|
|
.SILENT: clean
|
|
clean: _clean
|
|
rm -f core core.* *.o *.s *.a *~
|
|
rm -f Make.rules
|
|
make -C po clean
|
|
|