
These changes will help to have TRACE_INCLUDE_PATH according to target directory structure. Target specific flag was added to detect correct source path. Change-Id: I04463c7c30a700f6d697a5de5df69cf9de7805ce Signed-off-by: Mayank Vishwari <mayankvi@codeaurora.org>
15 lines
460 B
Makefile
15 lines
460 B
Makefile
ifneq (, $(filter y, $(CONFIG_ARCH_LAHAINA) $(CONFIG_ARCH_WAIPIO)))
|
|
ccflags-y += -DRMNET_LA_PLATFORM
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_SDXNIGHTJAR), y)
|
|
ccflags-y += -DRMNET_TRACE_INCLUDE_LE
|
|
endif
|
|
|
|
obj-m += rmnet_core.o
|
|
obj-m += rmnet_ctl.o
|
|
rmnet_core-y := rmnet_config.o rmnet_handlers.o rmnet_descriptor.o \
|
|
rmnet_genl.o rmnet_map_command.o rmnet_map_data.o rmnet_vnd.o\
|
|
qmi_rmnet.o wda_qmi.o dfc_qmi.o dfc_qmap.o
|
|
rmnet_ctl-y := rmnet_ctl_client.o rmnet_ctl_ipa.o
|