aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'net/rxrpc/Makefile')
-rw-r--r--net/rxrpc/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/net/rxrpc/Makefile b/net/rxrpc/Makefile
new file mode 100644
index 000000000000..6efcb6f162a0
--- /dev/null
+++ b/net/rxrpc/Makefile
@@ -0,0 +1,25 @@
1#
2# Makefile for Linux kernel Rx RPC
3#
4
5#CFLAGS += -finstrument-functions
6
7rxrpc-objs := \
8 call.o \
9 connection.o \
10 krxiod.o \
11 krxsecd.o \
12 krxtimod.o \
13 main.o \
14 peer.o \
15 rxrpc_syms.o \
16 transport.o
17
18ifeq ($(CONFIG_PROC_FS),y)
19rxrpc-objs += proc.o
20endif
21ifeq ($(CONFIG_SYSCTL),y)
22rxrpc-objs += sysctl.o
23endif
24
25obj-$(CONFIG_RXRPC) := rxrpc.o