mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
364 B
Makefile
15 lines
364 B
Makefile
APPLICATION ?= tests_$(notdir $(patsubst %/,%,$(CURDIR)))
|
|
|
|
ifneq (,$(wildcard $(CURDIR)/tests/.))
|
|
DEFAULT_MODULE += test_utils_interactive_sync
|
|
endif
|
|
|
|
ifneq (,$(filter tests_driver_%,$(APPLICATION)))
|
|
BOARD ?= samr21-xpro
|
|
endif
|
|
BOARD ?= native
|
|
RIOTBASE ?= $(CURDIR)/../..
|
|
QUIET ?= 1
|
|
# DEVELHELP enabled by default for all tests, set 0 to disable
|
|
DEVELHELP ?= 1
|