Question
multiple include paths in makefile
Hello,
I need to add multiple include paths to makefile for touchgfx project.
I have two paths
- mycode/include - mycode/src
- mycode/CMSIS_RTOS/include - mycode/CMSIS_RTOS/src
I edit makefile like below but it doesnt work. Is this notification correct ?
include_paths := $(library_includes) $(foreach comp, $(all_components), $(comp)/include) $(framework_includes) mycode/include mycode/CMSIS_RTOS/include
source_paths = $(foreach comp, $(all_components), $(comp)/src) mycode_src mycode/CMSIS_RTOS/src
