mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
296 B
Makefile
15 lines
296 B
Makefile
# define application name
|
|
export PROJECT = test_hwtimer_spin
|
|
|
|
# for easy switching of boards
|
|
export BOARD ?= native
|
|
|
|
# the absolute path of the RIOT-base dir
|
|
export RIOTBASE = $(CURDIR)/../..
|
|
|
|
# modules to include
|
|
USEMODULE += auto_init
|
|
USEMODULE += hwtimer
|
|
|
|
include $(RIOTBASE)/Makefile.include
|