Makefile 464 B

1234567891011121314151617181920
  1. obj-$(CONFIG_WIL6210) += wil6210.o
  2. wil6210-y := main.o
  3. wil6210-y += netdev.o
  4. wil6210-y += cfg80211.o
  5. wil6210-y += pcie_bus.o
  6. wil6210-y += debugfs.o
  7. wil6210-y += wmi.o
  8. wil6210-y += interrupt.o
  9. wil6210-y += txrx.o
  10. wil6210-y += debug.o
  11. wil6210-$(CONFIG_WIL6210_TRACING) += trace.o
  12. ifeq (, $(findstring -W,$(EXTRA_CFLAGS)))
  13. subdir-ccflags-y += -Werror
  14. endif
  15. # for tracing framework to find trace.h
  16. CFLAGS_trace.o := -I$(src)
  17. subdir-ccflags-y += -D__CHECK_ENDIAN__