1# $FreeBSD$ 2 3KMOD= sfxge 4 5SFXGE= ${SRCTOP}/sys/dev/sfxge 6 7SRCS= device_if.h bus_if.h pci_if.h 8SRCS+= opt_inet.h opt_inet6.h opt_sched.h opt_rss.h 9 10.PATH: ${SRCTOP}/sys/dev/sfxge 11SRCS+= sfxge.c sfxge_dma.c sfxge_ev.c 12SRCS+= sfxge_intr.c sfxge_mcdi.c sfxge_nvram.c 13SRCS+= sfxge_port.c sfxge_rx.c sfxge_tx.c 14SRCS+= sfxge.h sfxge_rx.h sfxge_tx.h sfxge_version.h 15 16.PATH: ${SRCTOP}/sys/dev/sfxge/common 17SRCS+= efx_bootcfg.c efx_crc32.c efx_ev.c efx_intr.c efx_lic.c efx_mac.c 18SRCS+= efx_mcdi.c efx_mon.c efx_nic.c 19SRCS+= efx_nvram.c efx_phy.c efx_port.c efx_rx.c efx_sram.c efx_tunnel.c 20SRCS+= efx_tx.c efx_vpd.c efx_filter.c efx_hash.c 21SRCS+= efsys.h 22SRCS+= efx.h efx_check.h efx_impl.h efx_mcdi.h efx_regs.h efx_regs_ef10.h 23SRCS+= efx_regs_mcdi.h efx_regs_mcdi_aoe.h efx_regs_pci.h efx_types.h 24SRCS+= efx_phy_ids.h 25SRCS+= ef10_tlv_layout.h 26 27SRCS+= mcdi_mon.c mcdi_mon.h 28 29SRCS+= siena_mac.c siena_mcdi.c siena_nic.c siena_nvram.c siena_phy.c 30SRCS+= siena_sram.c siena_vpd.c 31SRCS+= siena_flash.h siena_impl.h 32 33SRCS+= ef10_ev.c ef10_filter.c ef10_intr.c ef10_mac.c ef10_mcdi.c ef10_nic.c 34SRCS+= ef10_nvram.c ef10_phy.c ef10_rx.c ef10_tx.c ef10_vpd.c 35SRCS+= ef10_impl.h 36 37SRCS+= hunt_nic.c 38SRCS+= hunt_impl.h 39 40SRCS+= medford_nic.c 41SRCS+= medford_impl.h 42 43# Extra debug checks 44#CFLAGS += -DDEBUG=1 45 46.include <bsd.kmod.mk> 47