mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
8 lines
210 B
Makefile
8 lines
210 B
Makefile
|
ifeq (,$(filter nrf51 nrf52 nrf53,$(CPU_FAM)))
|
||
|
# nrf5x_isr.c does only compile for nRF5x MCUs
|
||
|
IGNORE := nrf5x_isr.c
|
||
|
SRC := $(filter-out $(IGNORE),$(wildcard *.c))
|
||
|
endif
|
||
|
|
||
|
include $(RIOTBASE)/Makefile.base
|