Makefile 404 B

123456789101112131415
  1. ifeq ($(CONFIG_MTK_COMBO_WIFI),y)
  2. subdir-ccflags-y += -D MTK_WCN_BUILT_IN_DRIVER
  3. endif
  4. ifneq ($(filter "MT6630",$(CONFIG_MTK_COMBO_CHIP)),)
  5. $(warning include gen3)
  6. obj-y += gen3/
  7. endif
  8. ifneq ($(filter "CONSYS_6797",$(CONFIG_MTK_COMBO_CHIP)),)
  9. $(warning include gen3)
  10. obj-y += gen3/
  11. else ifneq ($(filter "CONSYS_%",$(CONFIG_MTK_COMBO_CHIP)),)
  12. $(warning include gen2)
  13. obj-y += gen2/
  14. endif