mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
19 lines
362 B
Makefile
19 lines
362 B
Makefile
# name of your project
|
|
export PROJECT = test_shell
|
|
|
|
# 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 += shell
|
|
USEMODULE += shell_commands
|
|
USEMODULE += ps
|
|
USEMODULE += uart0
|
|
USEMODULE += posix
|
|
|
|
include $(RIOTBASE)/Makefile.include
|