mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
14 lines
278 B
Makefile
14 lines
278 B
Makefile
# exclude submodule sources from *.c wildcard source selection
|
|
|
|
IGNORE_SRC = \
|
|
dw1000_pkg.c \
|
|
dw1000_cli.c \
|
|
dw1000_cli_priv.c \
|
|
dw1000_sysfs.c \
|
|
dw1000_debugfs.c \
|
|
#
|
|
|
|
SRC := $(filter-out $(IGNORE_SRC),$(wildcard *.c))
|
|
|
|
include $(RIOTBASE)/Makefile.base
|