summaryrefslogtreecommitdiff
path: root/FreeRTOS/config.mk
blob: 81248d9fe773f675add853c01ac558e1e66d9afa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
TARGET_INCLUDES = $(ROOTDIR)/FreeRTOS/Source/include

ifeq ($(CPU),arm)
ifeq ($(CPU_FLAVOR),lpc1768)
TARGET_INCLUDES += $(ROOTDIR)/config/arm/lpc1768 $(ROOTDIR)/arch/arm/lpc17xx/Core/CM3/DeviceSupport/NXP/LPC17xx $(ROOTDIR)/arch/arm/lpc17xx/Core/CM3/CoreSupport
ifeq ($(USE_MPU),true)
TARGET_INCLUDES += $(ROOTDIR)/FreeRTOS/Source/portable/GCC/ARM_CM3_MPU
else
TARGET_INCLUDES += $(ROOTDIR)/FreeRTOS/Source/portable/GCC/ARM_CM3
endif
endif
endif