home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / net / rxrpc / Makefile
Encoding:
Makefile  |  2006-08-11  |  347 b   |  26 lines

  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
  26.