Almost written from the beginning in a modern OpenOCD way. - Endiannes support - Proper variable types - Align with the other rtos implementations Signed-off-by: Erhan Kurubas <erhan.kurubas@espressif.com> Change-Id: I0868a22da2ed2ab664c82b17c171dc59ede78d10 Reviewed-on: https://review.openocd.org/c/openocd/+/7444 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
38 lines
887 B
Makefile
38 lines
887 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
noinst_LTLIBRARIES += %D%/librtos.la
|
|
%C%_librtos_la_SOURCES = \
|
|
%D%/rtos.c \
|
|
%D%/rtos_standard_stackings.c \
|
|
%D%/rtos_ecos_stackings.c \
|
|
%D%/rtos_chibios_stackings.c \
|
|
%D%/rtos_embkernel_stackings.c \
|
|
%D%/rtos_mqx_stackings.c \
|
|
%D%/rtos_ucos_iii_stackings.c \
|
|
%D%/rtos_riot_stackings.c \
|
|
%D%/rtos_nuttx_stackings.c \
|
|
%D%/FreeRTOS.c \
|
|
%D%/ThreadX.c \
|
|
%D%/eCos.c \
|
|
%D%/linux.c \
|
|
%D%/chibios.c \
|
|
%D%/chromium-ec.c \
|
|
%D%/embKernel.c \
|
|
%D%/mqx.c \
|
|
%D%/uCOS-III.c \
|
|
%D%/nuttx.c \
|
|
%D%/rtkernel.c \
|
|
%D%/hwthread.c \
|
|
%D%/zephyr.c \
|
|
%D%/riot.c \
|
|
%D%/rtos.h \
|
|
%D%/rtos_standard_stackings.h \
|
|
%D%/rtos_ecos_stackings.h \
|
|
%D%/linux_header.h \
|
|
%D%/rtos_chibios_stackings.h \
|
|
%D%/rtos_embkernel_stackings.h \
|
|
%D%/rtos_mqx_stackings.h \
|
|
%D%/rtos_riot_stackings.h \
|
|
%D%/rtos_ucos_iii_stackings.h \
|
|
%D%/rtos_nuttx_stackings.h
|