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
Oleg Hahm 6c0482b976 Merge pull request #701 from Kijewski/issue-672
Use `filter` instead of `findstring`
2014-02-16 12:33:29 +01:00

22 lines
410 B
Makefile

# 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)/../..
ifeq (,$(filter native,$(BOARD)))
include $(RIOTBASE)/Makefile.unsupported
else
## Modules to include.
USEMODULE += auto_init
USEMODULE += hwtimer
USEMODULE += posix
include $(RIOTBASE)/Makefile.include
endif