#
# Makefile for SCTP support code.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definition is now in the main makefile...

O_TARGET := sctp.o

obj-$(CONFIG_IP_SCTP) = \
	sctp_sm_statetable.o \
        sctp_sm_statefuns.o \
        sctp_sm_sideeffect.o \
	sctp_protocol.o \
	\
	sctp_endpointola.o \
	sctp_associola.o \
	sctp_sm_make_chunk.o \
	sctp_ulpevent.o \
	sctp_inqueue.o \
	sctp_outqueue.o \
	sctp_ulpqueue.o \
	\
	sctp_command.o \
	sctp_tsnmap.o \
	sctp_bind_addr.o \
	sctp_socket.o \
	sctp_primitive.o \
	sctp_output.o \
	sctp_input.o \
	\
	md5driver.o \
	md5.o \
	sctp_sla1.o \
	sctp_adler32.o \
	sctp_crc32c.o \
	\
	sctp_debug.o

obj-$(CONFIG_IPV6) += sctp_ipv6.o

include $(TOPDIR)/Rules.make
