Skip to content

Commit

Permalink
KEYS: Reorganise keys Makefile
Browse files Browse the repository at this point in the history
Reorganise the keys directory Makefile to put all the core bits together and
the type-specific bits after.

Signed-off-by: David Howells <[email protected]>
Acked-by: Mimi Zohar <[email protected]>
  • Loading branch information
dhowells committed May 11, 2012
1 parent f089494 commit 9f7ce8e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions security/keys/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# Makefile for key management
#

#
# Core
#
obj-y := \
gc.o \
key.o \
Expand All @@ -12,9 +15,12 @@ obj-y := \
request_key.o \
request_key_auth.o \
user_defined.o

obj-$(CONFIG_TRUSTED_KEYS) += trusted.o
obj-$(CONFIG_ENCRYPTED_KEYS) += encrypted-keys/
obj-$(CONFIG_KEYS_COMPAT) += compat.o
obj-$(CONFIG_PROC_FS) += proc.o
obj-$(CONFIG_SYSCTL) += sysctl.o

#
# Key types
#
obj-$(CONFIG_TRUSTED_KEYS) += trusted.o
obj-$(CONFIG_ENCRYPTED_KEYS) += encrypted-keys/

0 comments on commit 9f7ce8e

Please sign in to comment.