lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | # |
| 2 | # Makefile for SCTP support code. |
| 3 | # |
| 4 | |
| 5 | obj-$(CONFIG_IP_SCTP) += sctp.o |
| 6 | obj-$(CONFIG_NET_SCTPPROBE) += sctp_probe.o |
| 7 | |
| 8 | sctp-y := sm_statetable.o sm_statefuns.o sm_sideeffect.o \ |
| 9 | protocol.o endpointola.o associola.o \ |
| 10 | transport.o chunk.o sm_make_chunk.o ulpevent.o \ |
| 11 | inqueue.o outqueue.o ulpqueue.o command.o \ |
| 12 | tsnmap.o bind_addr.o socket.o primitive.o \ |
| 13 | output.o input.o debug.o ssnmap.o auth.o |
| 14 | |
| 15 | sctp_probe-y := probe.o |
| 16 | |
| 17 | sctp-$(CONFIG_SCTP_DBG_OBJCNT) += objcnt.o |
| 18 | sctp-$(CONFIG_PROC_FS) += proc.o |
| 19 | sctp-$(CONFIG_SYSCTL) += sysctl.o |
| 20 | |
| 21 | sctp-$(subst m,y,$(CONFIG_IPV6)) += ipv6.o |