mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
883d138e1c
Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
16 lines
220 B
Makefile
16 lines
220 B
Makefile
MODULE = mynewt-core_os
|
|
|
|
SRC := \
|
|
endian.c \
|
|
os_mbuf.c \
|
|
os_mempool.c \
|
|
os_msys.c \
|
|
os_cputime_pwr2.c \
|
|
#
|
|
|
|
ifneq (,$(filter nrf51 nrf52,$(CPU)))
|
|
SRC += os_cputime.c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|