diff options
author | David Howells <dhowells@redhat.com> | 2007-04-26 18:55:48 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-04-26 18:55:48 -0400 |
commit | 63b6be55e8b51cb718468794d343058e96c7462c (patch) | |
tree | 83c06275ba6b7ca1ffbf8c2e52497d7bceed567c /net/rxrpc/Makefile | |
parent | 08e0e7c82eeadec6f4871a386b86bf0f0fbcb4eb (diff) |
[AF_RXRPC]: Delete the old RxRPC code.
Delete the old RxRPC code as it's now no longer used.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc/Makefile')
-rw-r--r-- | net/rxrpc/Makefile | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/net/rxrpc/Makefile b/net/rxrpc/Makefile index 07bf82ffec6a..c46867c61c98 100644 --- a/net/rxrpc/Makefile +++ b/net/rxrpc/Makefile | |||
@@ -1,9 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Makefile for Linux kernel Rx RPC | 2 | # Makefile for Linux kernel RxRPC |
3 | # | 3 | # |
4 | 4 | ||
5 | #CFLAGS += -finstrument-functions | ||
6 | |||
7 | af-rxrpc-objs := \ | 5 | af-rxrpc-objs := \ |
8 | af_rxrpc.o \ | 6 | af_rxrpc.o \ |
9 | ar-accept.o \ | 7 | ar-accept.o \ |
@@ -29,26 +27,3 @@ endif | |||
29 | obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o | 27 | obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o |
30 | 28 | ||
31 | obj-$(CONFIG_RXKAD) += rxkad.o | 29 | obj-$(CONFIG_RXKAD) += rxkad.o |
32 | |||
33 | # | ||
34 | # obsolete RxRPC interface, still used by fs/afs/ | ||
35 | # | ||
36 | rxrpc-objs := \ | ||
37 | call.o \ | ||
38 | connection.o \ | ||
39 | krxiod.o \ | ||
40 | krxsecd.o \ | ||
41 | krxtimod.o \ | ||
42 | main.o \ | ||
43 | peer.o \ | ||
44 | rxrpc_syms.o \ | ||
45 | transport.o | ||
46 | |||
47 | ifeq ($(CONFIG_PROC_FS),y) | ||
48 | rxrpc-objs += proc.o | ||
49 | endif | ||
50 | ifeq ($(CONFIG_SYSCTL),y) | ||
51 | rxrpc-objs += sysctl.o | ||
52 | endif | ||
53 | |||
54 | obj-$(CONFIG_RXRPC) += rxrpc.o | ||