aboutsummaryrefslogtreecommitdiff
path: root/src/rtos/Makefile.am
blob: b3e14f8c2cbc8acd75c3cb9fbb894bcef0841558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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%/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%/riscv_debug.c \
	%D%/uCOS-III.c \
	%D%/nuttx.c \
	%D%/hwthread.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_ucos_iii_stackings.h \
	%D%/nuttx_header.h \
	%D%/riscv_debug.h

%C%_librtos_la_CFLAGS = $(AM_CFLAGS)

if IS_MINGW
# FD_* macros are sloppy with their signs on MinGW32 platform
%C%_librtos_la_CFLAGS += -Wno-sign-compare
endif