Merge tag 'input-for-v6.3-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor...
[platform/kernel/linux-rpi.git] / security / tomoyo / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 obj-y = audit.o common.o condition.o domain.o environ.o file.o gc.o group.o load_policy.o memory.o mount.o network.o realpath.o securityfs_if.o tomoyo.o util.o
3
4 targets += builtin-policy.h
5
6 quiet_cmd_policy = POLICY  $@
7       cmd_policy = { \
8         $(foreach x, profile exception_policy domain_policy manager stat, \
9         printf 'static char tomoyo_builtin_$x[] __initdata =\n'; \
10         sed -e 's/\\/\\\\/g' -e 's/\"/\\"/g' -e 's/\(.*\)/\t"\1\\n"/' -- $(firstword $(filter %/$x.conf %/$x.conf.default, $^) /dev/null);  \
11         printf '\t"";\n';) \
12         } > $@
13
14 $(obj)/builtin-policy.h: $(wildcard $(obj)/policy/*.conf $(srctree)/$(src)/policy/*.conf.default) FORCE
15         $(call if_changed,policy)
16
17 ifndef CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING
18 $(obj)/common.o: $(obj)/builtin-policy.h
19 endif