more debug output
[linux-2.4.git] / net / ipv6 / netfilter / Makefile
1 #
2 # Makefile for the netfilter modules on top of IPv6.
3 #
4 # Note! Dependencies are done automagically by 'make dep', which also
5 # removes any old dependencies. DON'T put your own dependencies here
6 # unless it's something special (ie not a .c file).
7 #
8 # Note 2! The CFLAGS definition is now in the main makefile...
9
10 O_TARGET := netfilter.o
11
12 export-objs := ip6_tables.o
13
14 # Link order matters here.
15 obj-$(CONFIG_IP6_NF_IPTABLES) += ip6_tables.o
16 obj-$(CONFIG_IP6_NF_MATCH_LIMIT) += ip6t_limit.o
17 obj-$(CONFIG_IP6_NF_MATCH_MARK) += ip6t_mark.o
18 obj-$(CONFIG_IP6_NF_MATCH_LENGTH) += ip6t_length.o
19 obj-$(CONFIG_IP6_NF_MATCH_MAC) += ip6t_mac.o
20 obj-$(CONFIG_IP6_NF_MATCH_RT) += ip6t_rt.o
21 obj-$(CONFIG_IP6_NF_MATCH_OPTS) += ip6t_hbh.o ip6t_dst.o
22 obj-$(CONFIG_IP6_NF_MATCH_IPV6HEADER) += ip6t_ipv6header.o
23 obj-$(CONFIG_IP6_NF_MATCH_FRAG) += ip6t_frag.o
24 obj-$(CONFIG_IP6_NF_MATCH_AHESP) += ip6t_esp.o ip6t_ah.o
25 obj-$(CONFIG_IP6_NF_MATCH_EUI64) += ip6t_eui64.o
26 obj-$(CONFIG_IP6_NF_MATCH_MULTIPORT) += ip6t_multiport.o
27 obj-$(CONFIG_IP6_NF_MATCH_OWNER) += ip6t_owner.o
28 obj-$(CONFIG_IP6_NF_FILTER) += ip6table_filter.o
29 obj-$(CONFIG_IP6_NF_MANGLE) += ip6table_mangle.o
30 obj-$(CONFIG_IP6_NF_TARGET_MARK) += ip6t_MARK.o
31 obj-$(CONFIG_IP6_NF_QUEUE) += ip6_queue.o
32 obj-$(CONFIG_IP6_NF_TARGET_LOG) += ip6t_LOG.o
33 obj-$(CONFIG_IP6_NF_MATCH_HL) += ip6t_hl.o
34
35 include $(TOPDIR)/Rules.make