You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
784 B

  1. noinst_LTLIBRARIES += %D%/librtos.la
  2. %C%_librtos_la_SOURCES = \
  3. %D%/rtos.c \
  4. %D%/rtos_standard_stackings.c \
  5. %D%/rtos_ecos_stackings.c \
  6. %D%/rtos_chibios_stackings.c \
  7. %D%/rtos_embkernel_stackings.c \
  8. %D%/rtos_mqx_stackings.c \
  9. %D%/rtos_ucos_iii_stackings.c \
  10. %D%/FreeRTOS.c \
  11. %D%/ThreadX.c \
  12. %D%/eCos.c \
  13. %D%/linux.c \
  14. %D%/ChibiOS.c \
  15. %D%/embKernel.c \
  16. %D%/mqx.c \
  17. %D%/uCOS-III.c \
  18. %D%/rtos.h \
  19. %D%/rtos_standard_stackings.h \
  20. %D%/rtos_ecos_stackings.h \
  21. %D%/linux_header.h \
  22. %D%/rtos_chibios_stackings.h \
  23. %D%/rtos_embkernel_stackings.h \
  24. %D%/rtos_mqx_stackings.h \
  25. %D%/rtos_ucos_iii_stackings.h
  26. %C%_librtos_la_CFLAGS = $(AM_CFLAGS)
  27. if IS_MINGW
  28. # FD_* macros are sloppy with their signs on MinGW32 platform
  29. %C%_librtos_la_CFLAGS += -Wno-sign-compare
  30. endif