Kbuild 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. KDIR := $(TOP)/kernel_platform/common
  2. ifeq ($(CONFIG_ARCH_WAIPIO), y)
  3. include $(TOUCH_ROOT)/config/gki_waipiotouch.conf
  4. LINUX_INC += -include $(TOUCH_ROOT)/config/gki_waipiotouchconf.h
  5. endif
  6. #ifeq ($(CONFIG_ARCH_KALAMA), y)
  7. include $(TOUCH_ROOT)/config/gki_kalamatouch.conf
  8. LINUX_INC += -include $(TOUCH_ROOT)/config/gki_kalamatouchconf.h
  9. #endif
  10. LINUX_INC += -Iinclude/linux \
  11. -Iinclude/linux/drm \
  12. -Iinclude/linux/gunyah \
  13. -Iinclude/linux/input
  14. CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
  15. -DANI_LITTLE_BIT_ENDIAN \
  16. -DDOT11F_LITTLE_ENDIAN_HOST \
  17. -DANI_COMPILER_TYPE_GCC \
  18. -DANI_OS_TYPE_ANDROID=6 \
  19. -DPTT_SOCK_SVC_ENABLE \
  20. -Wall\
  21. -Werror\
  22. -D__linux__
  23. KBUILD_CPPFLAGS += $(CDEFINES)
  24. ccflags-y += $(LINUX_INC)
  25. ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
  26. EXTRA_CFLAGS += -Wmaybe-uninitialized
  27. endif
  28. ifeq ($(call cc-option-yn, -Wheader-guard),y)
  29. EXTRA_CFLAGS += -Wheader-guard
  30. endif
  31. ######### CONFIG_MSM_TOUCH ########
  32. ifeq ($(CONFIG_TOUCHSCREEN_SYNAPTICS_DSX), y)
  33. LINUX_INC += -include $(TOUCH_ROOT)/synaptics_dsx/synaptics_dsx.h
  34. LINUX_INC += -include $(TOUCH_ROOT)/synaptics_dsx/synaptics_dsx_core.h
  35. synaptics_dsx-y := \
  36. ./synaptics_dsx/synaptics_dsx_core.o \
  37. ./synaptics_dsx/synaptics_dsx_i2c.o
  38. obj-$(CONFIG_MSM_TOUCH) += synaptics_dsx.o
  39. endif
  40. ifeq ($(CONFIG_TOUCH_FOCALTECH), y)
  41. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_common.h
  42. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_config.h
  43. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_core.h
  44. LINUX_INC += -include $(TOUCH_ROOT)/focaltech_touch/focaltech_flash.h
  45. focaltech_fts-y := \
  46. ./focaltech_touch/focaltech_core.o \
  47. ./focaltech_touch/focaltech_ex_fun.o \
  48. ./focaltech_touch/focaltech_ex_mode.o \
  49. ./focaltech_touch/focaltech_gesture.o \
  50. ./focaltech_touch/focaltech_esdcheck.o \
  51. ./focaltech_touch/focaltech_point_report_check.o \
  52. ./focaltech_touch/focaltech_i2c.o \
  53. ./focaltech_touch/focaltech_flash.o \
  54. ./focaltech_touch/focaltech_flash/focaltech_upgrade_ft3518.o
  55. obj-$(CONFIG_MSM_TOUCH) += focaltech_fts.o
  56. endif
  57. ifeq ($(CONFIG_TOUCHSCREEN_NT36XXX_I2C), y)
  58. LINUX_INC += -include $(TOUCH_ROOT)/nt36xxx/nt36xxx.h
  59. LINUX_INC += -include $(TOUCH_ROOT)/nt36xxx/nt36xxx_mem_map.h
  60. LINUX_INC += -include $(TOUCH_ROOT)/nt36xxx/nt36xxx_mp_ctrlram.h
  61. nt36xxx-i2c-y := \
  62. ./nt36xxx/nt36xxx.o \
  63. ./nt36xxx/nt36xxx_fw_update.o \
  64. ./nt36xxx/nt36xxx_ext_proc.o \
  65. ./nt36xxx/nt36xxx_mp_ctrlram.o
  66. obj-$(CONFIG_MSM_TOUCH) += nt36xxx-i2c.o
  67. endif
  68. CDEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"