Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1#
2# Makefile for SCTP support code.
3#
4
5obj-$(CONFIG_IP_SCTP) += sctp.o
6obj-$(CONFIG_NET_SCTPPROBE) += sctp_probe.o
7obj-$(CONFIG_INET_SCTP_DIAG) += sctp_diag.o
8
9sctp-y := sm_statetable.o sm_statefuns.o sm_sideeffect.o \
10 protocol.o endpointola.o associola.o \
11 transport.o chunk.o sm_make_chunk.o ulpevent.o \
12 inqueue.o outqueue.o ulpqueue.o \
13 tsnmap.o bind_addr.o socket.o primitive.o \
14 output.o input.o debug.o ssnmap.o auth.o \
15 offload.o
16
17sctp_probe-y := probe.o
18
19sctp-$(CONFIG_SCTP_DBG_OBJCNT) += objcnt.o
20sctp-$(CONFIG_PROC_FS) += proc.o
21sctp-$(CONFIG_SYSCTL) += sysctl.o
22
23sctp-$(subst m,y,$(CONFIG_IPV6)) += ipv6.o