mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-29 00:11:16 +01:00
13 lines
269 B
Makefile
13 lines
269 B
Makefile
# name of your project
|
|
export PROJECT = ipc_pingpong
|
|
|
|
# for easy switching of boards
|
|
ifeq ($(strip $(BOARD)),)
|
|
export BOARD = native
|
|
endif
|
|
|
|
# this has to be the absolute path of the RIOT-base dir
|
|
export RIOTBASE = $(CURDIR)/../..
|
|
|
|
include $(RIOTBASE)/Makefile.include
|