mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 23:51:39 +00:00
7877a4a4bd
Split the service-specific connection code out into into its own file. The client-specific code has already been split out. This will leave just the common code in the original file. Signed-off-by: David Howells <dhowells@redhat.com>
33 lines
509 B
Makefile
33 lines
509 B
Makefile
#
|
|
# Makefile for Linux kernel RxRPC
|
|
#
|
|
|
|
af-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 \
|
|
output.o \
|
|
peer_event.o \
|
|
peer_object.o \
|
|
recvmsg.o \
|
|
security.o \
|
|
skbuff.o \
|
|
utils.o
|
|
|
|
af-rxrpc-$(CONFIG_PROC_FS) += proc.o
|
|
af-rxrpc-$(CONFIG_RXKAD) += rxkad.o
|
|
af-rxrpc-$(CONFIG_SYSCTL) += sysctl.o
|
|
|
|
obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o
|