1.PATH: ${SRCTOP}/sys/dev/bwn 2 3KMOD= if_bwn 4SRCS= if_bwn.c if_bwnreg.h if_bwnvar.h 5SRCS+= if_bwn_pci.c 6SRCS+= if_bwn_util.c 7 8# PHY 9SRCS+= if_bwn_phy_common.c 10SRCS+= if_bwn_phy_g.c if_bwn_phy_lp.c 11SRCS+= if_bwn_phy_n.c 12 13# BHND 14SRCS+= bhnd_bus_if.h \ 15 bhnd_chipc_if.h \ 16 bhnd_pmu_if.h \ 17 bhnd_pwrctl_if.h 18SRCS+= bhnd_nvram_map.h 19 20# BHNDB 21SRCS+= bhndb_bus_if.h \ 22 bhndb_if.h 23 24# Other 25SRCS+= device_if.h bus_if.h gpio_if.h pci_if.h opt_bwn.h opt_wlan.h 26 27# The following need the BWN_GPL_PHY kenrel option to opt-in 28# to the GPL'd 802.11n PHY support for this driver. 29.PATH: ${SRCTOP}/sys/gnu/dev/bwn/phy_n 30SRCS.BWN_GPL_PHY+= if_bwn_radio_2055.c 31SRCS.BWN_GPL_PHY+= if_bwn_radio_2056.c 32SRCS.BWN_GPL_PHY+= if_bwn_radio_2057.c 33SRCS.BWN_GPL_PHY+= if_bwn_phy_n_sprom.c 34SRCS.BWN_GPL_PHY+= if_bwn_phy_n_tables.c 35SRCS.BWN_GPL_PHY+= if_bwn_phy_n_ppr.c 36SRCS.BWN_GPL_PHY+= if_bwn_phy_n_core.c 37 38.include <bsd.kmod.mk> 39