mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
982eecd3a6
Contains common variables for all test Makefiles. Include from test Makefiles.
16 lines
273 B
Makefile
16 lines
273 B
Makefile
export PROJECT = test_irq
|
|
include ../Makefile.tests_common
|
|
|
|
ifeq (,$(filter native,$(BOARD)))
|
|
include $(RIOTBASE)/Makefile.unsupported
|
|
else
|
|
|
|
## Modules to include.
|
|
|
|
USEMODULE += auto_init
|
|
USEMODULE += hwtimer
|
|
USEMODULE += posix
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
endif
|