mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
14 lines
249 B
Makefile
14 lines
249 B
Makefile
export PROJECT = test_irq
|
|
include ../Makefile.tests_common
|
|
|
|
ifeq (,$(filter native,$(BOARD)))
|
|
include $(RIOTBASE)/Makefile.unsupported
|
|
else
|
|
|
|
USEMODULE += auto_init
|
|
USEMODULE += hwtimer
|
|
USEMODULE += posix
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
endif
|