# $USAGI: Makefile,v 1.16.6.2 2002/09/03 11:11:19 mk Exp $ # # Makefile for the Linux TCP/IP (INET6) layer. # # 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). # O_TARGET := ipv6.o export-objs := ipv6_tunnel.o obj-y := af_inet6.o ip6_output.o ip6_input.o addrconf.o sit.o \ route.o ip6_fib.o ipv6_sockglue.o ndisc.o udp.o raw.o \ protocol.o icmp.o mcast.o reassembly.o tcp_ipv6.o \ exthdrs.o sysctl_net_ipv6.o datagram.o proc.o \ ip6_flowlabel.o utils.o ifneq ($(CONFIG_IPV6_ANYCAST_GROUP),n) ifneq ($(CONFIG_IPV6_ANYCAST_GROUP),) obj-y += anycast.o endif endif obj-$(CONFIG_IPV6_IPSEC) += ipsec6_init.o ipsec6_input.o \ ipsec6_output.o ipsec6_utils.o obj-$(CONFIG_IPV6_IPV6_TUNNEL) += ipv6_tunnel.o ifneq ($(CONFIG_IPV6),y) ifneq ($(CONFIG_IPV6),) obj-m += $(O_TARGET) endif endif include $(TOPDIR)/Rules.make