Makefile.am 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. AUDIO_ROOT=$(PWD)
  2. UAPI_OUT=$(PWD)
  3. HEADER_INSTALL_DIR=$(KERNEL_SRC)/scripts
  4. KERNEL_BINARY_DIR=$(KERNEL_SRC)/../kernel-build-artifacts
  5. KBUILD_OPTIONS := AUDIO_ROOT=$(PWD)
  6. KBUILD_OPTIONS += MODNAME=audio
  7. KBUILD_OPTIONS += UAPI_OUT=$(PWD)
  8. AUDIO_KERNEL_HEADERS_PATH1 = $(shell ls ./include/uapi/audio/linux/*.h)
  9. AUDIO_KERNEL_HEADERS_PATH2 = $(shell ls ./include/uapi/audio/linux/mfd/wcd9xxx/*.h)
  10. AUDIO_KERNEL_HEADERS_PATH3 = $(shell ls ./include/uapi/audio/sound/*.h)
  11. ifeq ($(TARGET_SUPPORT),qcs40x)
  12. KBUILD_OPTIONS += CONFIG_ARCH_QCS405=y
  13. endif
  14. ifeq ($(TARGET_SUPPORT), sdmsteppe)
  15. KBUILD_OPTIONS += CONFIG_ARCH_SM6150=y
  16. endif
  17. subdir-ccflags-y += -I$(AUDIO_ROOT)/include/uapi/
  18. obj-m := ipc/
  19. obj-m += dsp/
  20. obj-m += soc/
  21. obj-m += asoc/
  22. obj-m += asoc/codecs/
  23. ifeq ($(TARGET_SUPPORT), $(filter $(TARGET_SUPPORT), sdmsteppe))
  24. obj-m += asoc/codecs/wcd934x/
  25. endif
  26. ifeq ($(TARGET_SUPPORT), $(filter $(TARGET_SUPPORT), qcs40x))
  27. obj-m += asoc/codecs/bolero/
  28. obj-m += asoc/codecs/csra66x0/
  29. obj-m += asoc/codecs/ep92/
  30. endif
  31. ifeq ($(TARGET_SUPPORT), sdmsteppe)
  32. obj-m += asoc/codecs/bolero/
  33. obj-m += asoc/codecs/wcd937x/
  34. endif
  35. ifeq ($(TARGET_SUPPORT), $(filter $(TARGET_SUPPORT), sa8155 sa8155ivi sa6155 sa8195 qtiquingvm))
  36. KBUILD_OPTIONS += CONFIG_SND_SOC_AUTO=y
  37. obj-m := ipc/
  38. obj-m += dsp/
  39. obj-m += asoc/
  40. obj-m += asoc/codecs/
  41. obj-m += soc/
  42. ifeq ($(TARGET_SUPPORT), $(filter $(TARGET_SUPPORT), sa8155 sa8155ivi sa8195 qtiquingvm))
  43. KBUILD_OPTIONS += CONFIG_SND_SOC_SA8155=m
  44. endif
  45. ifeq ($(TARGET_SUPPORT), $(filter $(TARGET_SUPPORT), sa6155))
  46. KBUILD_OPTIONS += CONFIG_SND_SOC_SA6155=m
  47. endif
  48. endif
  49. define PROCESS_HEADERS
  50. $(foreach name,$(1),$(shell cd $(KERNEL_BINARY_DIR) && $(KERNEL_SRC)/scripts/headers_install.sh $(2)$(name) $(3)$(name)))
  51. endef
  52. all:
  53. $(shell rm -fr $(shell pwd)/soc/core.h)
  54. $(shell ln -s $(KERNEL_SRC)/drivers/pinctrl/core.h $(shell pwd)/soc/core.h)
  55. $(shell rm -fr $(shell pwd)/include/soc/internal.h)
  56. $(shell ln -s $(KERNEL_SRC)/drivers/base/regmap/internal.h $(shell pwd)/include/soc/internal.h)
  57. $(shell rm -fr $(shell pwd)/soc/pinctrl-utils.h)
  58. $(shell ln -s $(KERNEL_SRC)/drivers/pinctrl/pinctrl-utils.h $(shell pwd)/soc/pinctrl-utils.h)
  59. $(shell rm -fr $(shell pwd)/include/soc/qcom/secure_buffer.h)
  60. $(shell ln -s $(KERNEL_SRC)/include/soc/qcom/secure_buffer.h $(shell pwd)/include/soc/qcom/secure_buffer.h)
  61. $(shell mkdir $(shell pwd)/linux)
  62. $(shell mkdir $(shell pwd)/sound)
  63. $(shell mkdir $(shell pwd)/linux/mfd)
  64. $(shell mkdir $(shell pwd)/linux/mfd/wcd9xxx)
  65. $(call PROCESS_HEADERS, $(notdir $(shell ls $(AUDIO_ROOT)/include/uapi/audio/linux/*.h)), $(AUDIO_ROOT)/include/uapi/audio/linux/, $(UAPI_OUT)/linux/)
  66. $(call PROCESS_HEADERS, $(notdir $(shell ls $(AUDIO_ROOT)/include/uapi/audio/linux/mfd/wcd9xxx/*.h)), $(AUDIO_ROOT)/include/uapi/audio/linux/mfd/wcd9xxx/, $(UAPI_OUT)/linux/mfd/wcd9xxx/)
  67. $(call PROCESS_HEADERS, $(notdir $(shell ls $(AUDIO_ROOT)/include/uapi/audio/sound/*.h)), $(AUDIO_ROOT)/include/uapi/audio/sound/, $(UAPI_OUT)/sound/)
  68. $(shell mkdir $(KERNEL_BINARY_DIR)/usr/include/audio)
  69. $(shell mkdir $(KERNEL_BINARY_DIR)/usr/include/audio/sound)
  70. $(shell mkdir $(KERNEL_BINARY_DIR)/usr/include/audio/linux)
  71. $(shell mkdir $(KERNEL_BINARY_DIR)/usr/include/audio/linux/mfd)
  72. $(shell mkdir $(KERNEL_BINARY_DIR)/usr/include/audio/linux/mfd/wcd9xxx)
  73. $(call PROCESS_HEADERS, $(notdir $(shell ls $(AUDIO_ROOT)/include/uapi/audio/linux/*.h)), $(AUDIO_ROOT)/include/uapi/audio/linux/, $(KERNEL_BINARY_DIR)/usr/include/audio/linux/)
  74. $(call PROCESS_HEADERS, $(notdir $(shell ls $(AUDIO_ROOT)/include/uapi/audio/linux/mfd/wcd9xxx/*.h)), $(AUDIO_ROOT)/include/uapi/audio/linux/mfd/wcd9xxx/, $(KERNEL_BINARY_DIR)/usr/include/audio/linux/mfd/wcd9xxx/)
  75. $(call PROCESS_HEADERS, $(notdir $(shell ls $(AUDIO_ROOT)/include/uapi/audio/sound/*.h)), $(AUDIO_ROOT)/include/uapi/audio/sound/, $(KERNEL_BINARY_DIR)/usr/include/audio/sound/)
  76. $(MAKE) -C $(KERNEL_SRC) M=$(shell pwd) modules $(KBUILD_OPTIONS)
  77. modules_install:
  78. $(MAKE) INSTALL_MOD_STRIP=1 -C $(KERNEL_SRC) M=$(shell pwd) modules_install
  79. clean:
  80. rm -f *.o *.ko *.mod.c *.mod.o *~ .*.cmd Module.symvers
  81. rm -rf .tmp_versions