76bae57089
mesh.c will be the file where we concentrate all mesh-related code. This allows us to either add a KConfig entry for mesh and makes matters easier for the cfg80211 transition. Signed-off-by: Holger Schurig <holgerschurig@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
23 lines
590 B
Makefile
23 lines
590 B
Makefile
libertas-y += assoc.o
|
|
libertas-y += cfg.o
|
|
libertas-y += cmd.o
|
|
libertas-y += cmdresp.o
|
|
libertas-y += debugfs.o
|
|
libertas-y += ethtool.o
|
|
libertas-y += main.o
|
|
libertas-y += mesh.o
|
|
libertas-y += rx.o
|
|
libertas-y += scan.o
|
|
libertas-y += tx.o
|
|
libertas-y += wext.o
|
|
|
|
usb8xxx-objs += if_usb.o
|
|
libertas_cs-objs += if_cs.o
|
|
libertas_sdio-objs += if_sdio.o
|
|
libertas_spi-objs += if_spi.o
|
|
|
|
obj-$(CONFIG_LIBERTAS) += libertas.o
|
|
obj-$(CONFIG_LIBERTAS_USB) += usb8xxx.o
|
|
obj-$(CONFIG_LIBERTAS_CS) += libertas_cs.o
|
|
obj-$(CONFIG_LIBERTAS_SDIO) += libertas_sdio.o
|
|
obj-$(CONFIG_LIBERTAS_SPI) += libertas_spi.o
|