1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

Improve text and stop overriding useful variables

This commit is contained in:
Ludwig Ortmann 2014-01-09 12:18:14 +01:00
parent b4b1ce66f2
commit ffad76624a

35
dist/Makefile vendored
View File

@ -1,26 +1,26 @@
####
#### Sample Makefile for building apps with the RIOT OS
#### Sample Makefile for building projects with the RIOT OS
####
#### The example file system layout is:
#### ./project makefile
#### ../../RIOT
####
#### The Sample Filesystem Layout is:
#### /this makefile
#### ../../RIOT
####
# name of your project
# Set the name of your project:
export PROJECT = foobar
# for easy switching of boards
# If not BOARD is found in the environment, use this default:
export BOARD ?= native
# this has to be the absolute path of the RIOT-base dir
export RIOTBASE = $(CURDIR)/../../RIOT
# 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
# 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
# uncomment this to enable scheduler statistics for ps
# Uncomment this to enable scheduler statistics for ps:
#CFLAGS += -DSCHEDSTATISTICS
# If you want to use valgrind, you should recompile native with either
@ -36,7 +36,10 @@ export RIOTBASE = $(CURDIR)/../../RIOT
# development process:
#CFLAGS += -DDEVELHELP
## Modules to include.
# Change this to 0 show compiler invocation lines by default:
export QUIET ?= 1
## Modules to include:
#USEMODULE += shell
#USEMODULE += uart0
@ -49,6 +52,4 @@ export RIOTBASE = $(CURDIR)/../../RIOT
export INCLUDES = -I$(RIOTBOARD)/$(BOARD)/include -I$(RIOTBASE)/core/include -I$(RIOTCPU)/$(CPU)/include -I$(RIOTBASE)/sys/lib -I$(RIOTBASE)/sys/include/ -I$(RIOTBASE)/drivers/include/
export QUIET := 1
include $(RIOTBASE)/Makefile.include