mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
321 B
Makefile
16 lines
321 B
Makefile
MODULE = test_utils_result_output
|
|
|
|
ifneq (,$(filter test_utils_result_output_json,$(USEMODULE)))
|
|
DIRS += json
|
|
endif
|
|
|
|
ifneq (,$(filter test_utils_result_output_txt,$(USEMODULE)))
|
|
DIRS += txt
|
|
endif
|
|
|
|
ifneq (,$(filter test_utils_result_output_check,$(USEMODULE)))
|
|
DIRS += check
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|