mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
ca7fb10059
Split the server private key type (rxrpc_s) out into its own file rather than mingling it with the authentication/client key type (rxrpc) since they don't really bear any relation. Signed-off-by: David Howells <dhowells@redhat.com>
37 lines
579 B
Makefile
37 lines
579 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for Linux kernel RxRPC
|
|
#
|
|
|
|
obj-$(CONFIG_AF_RXRPC) += rxrpc.o
|
|
|
|
rxrpc-y := \
|
|
af_rxrpc.o \
|
|
call_accept.o \
|
|
call_event.o \
|
|
call_object.o \
|
|
conn_client.o \
|
|
conn_event.o \
|
|
conn_object.o \
|
|
conn_service.o \
|
|
input.o \
|
|
insecure.o \
|
|
key.o \
|
|
local_event.o \
|
|
local_object.o \
|
|
misc.o \
|
|
net_ns.o \
|
|
output.o \
|
|
peer_event.o \
|
|
peer_object.o \
|
|
recvmsg.o \
|
|
rtt.o \
|
|
security.o \
|
|
sendmsg.o \
|
|
server_key.o \
|
|
skbuff.o \
|
|
utils.o
|
|
|
|
rxrpc-$(CONFIG_PROC_FS) += proc.o
|
|
rxrpc-$(CONFIG_RXKAD) += rxkad.o
|
|
rxrpc-$(CONFIG_SYSCTL) += sysctl.o
|