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>
13 lines
269 B
Makefile
13 lines
269 B
Makefile
MODULE = mynewt-core
|
|
|
|
# exclude submodule sources from *.c wildcard source selection
|
|
SRC := $(filter-out nrf5x_isr.c cputime.c,$(wildcard *.c))
|
|
|
|
ifneq (,$(filter nrf51 nrf52,$(CPU)))
|
|
SRC += nrf5x_isr.c
|
|
else
|
|
SRC += cputime.c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|