diff options
author | John Johansen <john.johansen@canonical.com> | 2010-07-29 23:46:33 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2010-08-02 01:38:39 -0400 |
commit | 016d825fe02cd20fd8803ca37a1e6d428fe878f6 (patch) | |
tree | b36bafad46e09a1a62f3521536a703c58540f675 /security/apparmor/Makefile | |
parent | 484ca79c653121d3c79fffb86e1deea724f2e20b (diff) |
AppArmor: Enable configuring and building of the AppArmor security module
Kconfig and Makefiles to enable configuration and building of AppArmor.
Signed-off-by: John Johansen <john.johansen@canonical.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/apparmor/Makefile')
-rw-r--r-- | security/apparmor/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/security/apparmor/Makefile b/security/apparmor/Makefile new file mode 100644 index 000000000000..f204869399ea --- /dev/null +++ b/security/apparmor/Makefile | |||
@@ -0,0 +1,24 @@ | |||
1 | # Makefile for AppArmor Linux Security Module | ||
2 | # | ||
3 | obj-$(CONFIG_SECURITY_APPARMOR) += apparmor.o | ||
4 | |||
5 | apparmor-y := apparmorfs.o audit.o capability.o context.o ipc.o lib.o match.o \ | ||
6 | path.o domain.o policy.o policy_unpack.o procattr.o lsm.o \ | ||
7 | resource.o sid.o file.o | ||
8 | |||
9 | clean-files: capability_names.h af_names.h | ||
10 | |||
11 | quiet_cmd_make-caps = GEN $@ | ||
12 | cmd_make-caps = echo "static const char *capability_names[] = {" > $@ ; sed -n -e "/CAP_FS_MASK/d" -e "s/^\#define[ \\t]\\+CAP_\\([A-Z0-9_]\\+\\)[ \\t]\\+\\([0-9]\\+\\)\$$/[\\2] = \"\\1\",/p" $< | tr A-Z a-z >> $@ ; echo "};" >> $@ | ||
13 | |||
14 | quiet_cmd_make-rlim = GEN $@ | ||
15 | cmd_make-rlim = echo "static const char *rlim_names[] = {" > $@ ; sed -n --e "/AF_MAX/d" -e "s/^\# \\?define[ \\t]\\+RLIMIT_\\([A-Z0-9_]\\+\\)[ \\t]\\+\\([0-9]\\+\\)\\(.*\\)\$$/[\\2] = \"\\1\",/p" $< | tr A-Z a-z >> $@ ; echo "};" >> $@ ; echo "static const int rlim_map[] = {" >> $@ ; sed -n -e "/AF_MAX/d" -e "s/^\# \\?define[ \\t]\\+\\(RLIMIT_[A-Z0-9_]\\+\\)[ \\t]\\+\\([0-9]\\+\\)\\(.*\\)\$$/\\1,/p" $< >> $@ ; echo "};" >> $@ | ||
16 | |||
17 | $(obj)/capability.o : $(obj)/capability_names.h | ||
18 | $(obj)/resource.o : $(obj)/rlim_names.h | ||
19 | $(obj)/capability_names.h : $(srctree)/include/linux/capability.h | ||
20 | $(call cmd,make-caps) | ||
21 | $(obj)/af_names.h : $(srctree)/include/linux/socket.h | ||
22 | $(call cmd,make-af) | ||
23 | $(obj)/rlim_names.h : $(srctree)/include/asm-generic/resource.h | ||
24 | $(call cmd,make-rlim) | ||