mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 07:31:45 +00:00
KEYS: Reorganise keys Makefile
Reorganise the keys directory Makefile to put all the core bits together and the type-specific bits after. Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Mimi Zohar <zohar@us.ibm.com>
This commit is contained in:
parent
f0894940ae
commit
9f7ce8e249
@ -2,6 +2,9 @@
|
|||||||
# Makefile for key management
|
# Makefile for key management
|
||||||
#
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Core
|
||||||
|
#
|
||||||
obj-y := \
|
obj-y := \
|
||||||
gc.o \
|
gc.o \
|
||||||
key.o \
|
key.o \
|
||||||
@ -12,9 +15,12 @@ obj-y := \
|
|||||||
request_key.o \
|
request_key.o \
|
||||||
request_key_auth.o \
|
request_key_auth.o \
|
||||||
user_defined.o
|
user_defined.o
|
||||||
|
|
||||||
obj-$(CONFIG_TRUSTED_KEYS) += trusted.o
|
|
||||||
obj-$(CONFIG_ENCRYPTED_KEYS) += encrypted-keys/
|
|
||||||
obj-$(CONFIG_KEYS_COMPAT) += compat.o
|
obj-$(CONFIG_KEYS_COMPAT) += compat.o
|
||||||
obj-$(CONFIG_PROC_FS) += proc.o
|
obj-$(CONFIG_PROC_FS) += proc.o
|
||||||
obj-$(CONFIG_SYSCTL) += sysctl.o
|
obj-$(CONFIG_SYSCTL) += sysctl.o
|
||||||
|
|
||||||
|
#
|
||||||
|
# Key types
|
||||||
|
#
|
||||||
|
obj-$(CONFIG_TRUSTED_KEYS) += trusted.o
|
||||||
|
obj-$(CONFIG_ENCRYPTED_KEYS) += encrypted-keys/
|
||||||
|
Loading…
Reference in New Issue
Block a user