1# 2# Makefile for SCTP support code. 3# 4 5O_TARGET := sctp.o 6 7obj-$(CONFIG_IP_SCTP) += sctp.o 8 9obj-y := endpointola.o output.o sm_make_chunk.o associola.o \ 10 outqueue.o sm_sideeffect.o transport.o bind_addr.o input.o primitive.o \ 11 sm_statefuns.o tsnmap.o command.o inqueue.o proc.o sm_statetable.o \ 12 ulpevent.o protocol.o socket.o ulpqueue.o debug.o ssnmap.o \ 13 crc32c.o chunk.o 14 15obj-$(CONFIG_SCTP_DBG_OBJCNT) += objcnt.o 16obj-$(CONFIG_SYSCTL) += sysctl.o 17 18obj-$(subst m,y,$(CONFIG_IPV6)) += ipv6.o 19 20sctp-objs := $(obj-y) 21 22include $(TOPDIR)/Rules.make 23

