mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 05:12:57 +01:00
make: doc: clean up dist Makefile
This commit is contained in:
parent
ad65a1383a
commit
b0a65e870b
23
dist/Makefile
vendored
23
dist/Makefile
vendored
@ -2,23 +2,18 @@
|
||||
#### Sample Makefile for building applications with the RIOT OS
|
||||
####
|
||||
#### The example file system layout is:
|
||||
#### ./application makefile
|
||||
#### ./application Makefile
|
||||
#### ../../RIOT
|
||||
####
|
||||
|
||||
# Set the name of your application:
|
||||
export APPLICATION = foobar
|
||||
APPLICATION = foobar
|
||||
|
||||
# If no BOARD is found in the environment, use this default:
|
||||
export BOARD ?= native
|
||||
BOARD ?= native
|
||||
|
||||
# This has to be the absolute path to the RIOT base directory:
|
||||
export RIOTBASE ?= $(CURDIR)/../../RIOT
|
||||
|
||||
# Uncomment these lines if you want to use platform support from external
|
||||
# repositories:
|
||||
#export RIOTCPU ?= $(CURDIR)/../../RIOT/thirdparty_cpu
|
||||
#export RIOTBOARD ?= $(CURDIR)/../../RIOT/thirdparty_boards
|
||||
RIOTBASE ?= $(CURDIR)/../../RIOT
|
||||
|
||||
# Uncomment this to enable scheduler statistics for ps:
|
||||
#CFLAGS += -DSCHEDSTATISTICS
|
||||
@ -33,7 +28,7 @@ export RIOTBASE ?= $(CURDIR)/../../RIOT
|
||||
#CFLAGS += -DDEVELHELP
|
||||
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
export QUIET ?= 1
|
||||
QUIET ?= 1
|
||||
|
||||
# Modules to include:
|
||||
|
||||
@ -41,15 +36,13 @@ export QUIET ?= 1
|
||||
#USEMODULE += uart0
|
||||
#USEMODULE += posix
|
||||
#USEMODULE += vtimer
|
||||
#USEMODULE += sht11
|
||||
#USEMODULE += ltc4150
|
||||
#USEMODULE += cc110x
|
||||
#USEMODULE += fat
|
||||
#USEMODULE += defaulttransceiver
|
||||
#USEMODULE += sixlowpan
|
||||
|
||||
#export INCLUDES += -Iapplication_include
|
||||
|
||||
# Specify custom dependencies for your application here ...
|
||||
# export APPDEPS = app_data.h config.h
|
||||
# APPDEPS = app_data.h config.h
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user