mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
22 lines
539 B
Makefile
22 lines
539 B
Makefile
# Set the name of your application:
|
|
APPLICATION = spectrum-scanner
|
|
|
|
# If no BOARD is found in the environment, use this default:
|
|
BOARD ?= samr21-xpro
|
|
|
|
# This has to be the absolute path to the RIOT base directory:
|
|
RIOTBASE ?= $(CURDIR)/../..
|
|
|
|
# Define modules that are used
|
|
USEMODULE += gnrc
|
|
USEMODULE += netdev_default
|
|
USEMODULE += auto_init_gnrc_netif
|
|
USEMODULE += xtimer
|
|
USEMODULE += ztimer64_xtimer_compat
|
|
USEMODULE += fmt
|
|
|
|
# Change this to 0 show compiler invocation lines by default:
|
|
QUIET ?= 1
|
|
|
|
include $(RIOTBASE)/Makefile.include
|