mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
14 lines
287 B
Makefile
14 lines
287 B
Makefile
# name of your project
|
|
export PROJECT = test_semaphore
|
|
|
|
# for easy switching of boards
|
|
export BOARD ?= native
|
|
|
|
# this has to be the absolute path of the RIOT-base dir
|
|
export RIOTBASE = $(CURDIR)/../..
|
|
|
|
## Modules to include.
|
|
USEMODULE += semaphore
|
|
|
|
include $(RIOTBASE)/Makefile.include
|