This commit adaptes the Kbuild system to the change of location of the header files for drivers. Old location: driver/ New location: include/driver/ Change-Id: Ic49d373149ee44d781419c5c68e59408c8ef1c11 Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@linux.intel.com>
14 lines
375 B
Makefile
14 lines
375 B
Makefile
EXTRA_CFLAGS +=-I$(srctree)/include/bsp
|
|
EXTRA_CFLAGS +=-I$(srctree)/kernel/common/bsp
|
|
EXTRA_CFLAGS +=-I$(srctree)/include/drivers
|
|
|
|
ifeq (${CONFIG_BSP_FSL_FRDM_K64F},y)
|
|
EXTRA_CFLAGS +=-I$(srctree)/arch/arm/fsl_frdm_k64f
|
|
endif
|
|
|
|
ifeq (${CONFIG_BSP_TI_LM3S6965},y)
|
|
EXTRA_CFLAGS +=-I$(srctree)/arch/arm/ti_lm3s6965
|
|
endif
|
|
|
|
obj-y = CortexM/
|
|
obj-y += sysFatalErrorHandler.o rand32.o
|