# File: drivers/addon/Makefile
#
# Makefile for the device drivers that are not in the main tree but added 
# to the Red Hat linux kernel
#

obj-y           :=
obj-m           :=
obj-n           :=
obj-            :=

mod-subdirs     := e100 e1000 e100_2124k2 e1000_4412k1 bcm5700 cipe qla2200_531RH1 aep qla2xxx ips_61052 megaraid_2009 megaraid2 fusion_20505

O_TARGET := addon.o

# All of the (potential) objects that export symbols.
# This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'.

export-objs     :=
list-multi	:=


subdir-$(CONFIG_NET_E100) += e100
subdir-$(CONFIG_NET_E1000) += e1000
subdir-$(CONFIG_NET_E100) += e100_2124k2
subdir-$(CONFIG_NET_E1000) += e1000_4412k1
subdir-$(CONFIG_NET_E100) += e100_2330k1
subdir-$(CONFIG_NET_E1000) += e1000_5220k1
subdir-$(CONFIG_CIPE) += cipe
subdir-$(CONFIG_NET_BROADCOM) += bcm5700
subdir-$(CONFIG_CRYPTO_AEP) += aep
subdir-$(CONFIG_FC_QLA2200) += qla2200_531RH1
subdir-$(CONFIG_FC_QLA2300) += qla2200_531RH1
subdir-$(CONFIG_SCSI_QLOGIC_QLA2XXX) += qla2xxx
subdir-$(CONFIG_SCSI_IPS) += ips_61052
subdir-$(CONFIG_SCSI_MEGARAID2) += megaraid_2009
subdir-$(CONFIG_BLK_CPQ_CISS_DA) += cciss
subdir-$(CONFIG_BLK_CPQ_DA) += cpqarray
subdir-$(CONFIG_FUSION) += fusion_20505
subdir-$(CONFIG_SCSI_AIC7XXX) += aic7xxx
subdir-$(CONFIG_SCSI_AIC79XX) += aic7xxx
subdir-$(CONFIG_SCSI_MEGARAID2) += megaraid2

obj-$(CONFIG_PCNET32_127B) += pcnet32_127b.o

include $(TOPDIR)/Rules.make

clean:
	rm -f core *.o *.a *.s *~

