summaryrefslogtreecommitdiffstats
path: root/br-nf-bds/linux2.5/net/bridge/Makefile
blob: 5eed6cabf82b845d7a3d8b1b44c46d1fbef58250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# Makefile for the IEEE 802.1d ethernet bridging layer.
#

ifneq ($(CONFIG_BRIDGE_EBT_BROUTE),n)
ifneq ($(CONFIG_BRIDGE_EBT_BROUTE),)
export-objs := br.o
endif
endif

obj-$(CONFIG_BRIDGE) += bridge.o

bridge-objs	:= br.o br_device.o br_fdb.o br_forward.o br_if.o br_input.o \
			br_ioctl.o br_notify.o br_stp.o br_stp_bpdu.o \
			br_stp_if.o br_stp_timer.o
obj-$(CONFIG_BRIDGE_EBT) += netfilter/

ifneq ($(CONFIG_BRIDGE_NF),n)
ifneq ($(CONFIG_BRIDGE_NF),)
bridge-objs += br_netfilter.o
endif
endif

include $(TOPDIR)/Rules.make