You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
376 B
Makefile
14 lines
376 B
Makefile
MODULE = $(APPLICATION)
|
|
|
|
DIRS += $(RIOTCPU)/$(CPU) $(RIOTBOARD)/$(BOARD)
|
|
DIRS += $(RIOTBASE)/core $(RIOTBASE)/drivers $(RIOTBASE)/sys
|
|
|
|
ifneq (,$(filter embunit,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/tests/unittests/embunit/embUnit
|
|
endif
|
|
ifneq (,$(filter embunit_textui,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/tests/unittests/embunit/textui
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|