1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/test_irq/Makefile

22 lines
410 B
Makefile
Raw Normal View History

# name of your project
export PROJECT = test_irq
#
# for easy switching of boards
export BOARD ?= native
# this has to be the absolute path of the RIOT-base dir
export RIOTBASE = $(CURDIR)/../..
2014-02-14 14:30:16 +01:00
ifeq (,$(filter native,$(BOARD)))
include $(RIOTBASE)/Makefile.unsupported
else
## Modules to include.
USEMODULE += auto_init
USEMODULE += hwtimer
USEMODULE += posix
2014-02-13 23:39:21 +01:00
include $(RIOTBASE)/Makefile.include
endif