You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
347 B
26 lines
347 B
20 years ago
|
#
|
||
|
# Makefile for Linux kernel Rx RPC
|
||
|
#
|
||
|
|
||
|
#CFLAGS += -finstrument-functions
|
||
|
|
||
|
rxrpc-objs := \
|
||
|
call.o \
|
||
|
connection.o \
|
||
|
krxiod.o \
|
||
|
krxsecd.o \
|
||
|
krxtimod.o \
|
||
|
main.o \
|
||
|
peer.o \
|
||
|
rxrpc_syms.o \
|
||
|
transport.o
|
||
|
|
||
|
ifeq ($(CONFIG_PROC_FS),y)
|
||
|
rxrpc-objs += proc.o
|
||
|
endif
|
||
|
ifeq ($(CONFIG_SYSCTL),y)
|
||
|
rxrpc-objs += sysctl.o
|
||
|
endif
|
||
|
|
||
|
obj-$(CONFIG_RXRPC) := rxrpc.o
|