mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
9ed05ad3c0
Changed Makefile to use <modules>-y instead of <modules>-objs because -objs is deprecated and not mentioned in Documentation/kbuild/makefiles.txt. Signed-off-by: Tracey Dent <tdent48227@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
29 lines
420 B
Makefile
29 lines
420 B
Makefile
#
|
|
# Makefile for Linux kernel RxRPC
|
|
#
|
|
|
|
af-rxrpc-y := \
|
|
af_rxrpc.o \
|
|
ar-accept.o \
|
|
ar-ack.o \
|
|
ar-call.o \
|
|
ar-connection.o \
|
|
ar-connevent.o \
|
|
ar-error.o \
|
|
ar-input.o \
|
|
ar-key.o \
|
|
ar-local.o \
|
|
ar-output.o \
|
|
ar-peer.o \
|
|
ar-recvmsg.o \
|
|
ar-security.o \
|
|
ar-skbuff.o \
|
|
ar-transport.o
|
|
|
|
ifeq ($(CONFIG_PROC_FS),y)
|
|
af-rxrpc-y += ar-proc.o
|
|
endif
|
|
|
|
obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o
|
|
|
|
obj-$(CONFIG_RXKAD) += rxkad.o
|