diff options
Diffstat (limited to 'net/rxrpc/Makefile')
-rw-r--r-- | net/rxrpc/Makefile | 25 |
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 | |||
7 | rxrpc-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 | |||
18 | ifeq ($(CONFIG_PROC_FS),y) | ||
19 | rxrpc-objs += proc.o | ||
20 | endif | ||
21 | ifeq ($(CONFIG_SYSCTL),y) | ||
22 | rxrpc-objs += sysctl.o | ||
23 | endif | ||
24 | |||
25 | obj-$(CONFIG_RXRPC) := rxrpc.o | ||