From 498cc027b19a75358c46427526786c47eea52076 Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Mon, 13 Jan 2014 11:12:14 +0100 Subject: [PATCH] dist/example Makefiles: not BOARD -> no BOARD, ## Modules -> # Modules --- dist/Makefile | 4 ++-- examples/ccn-lite-client/Makefile | 4 ++-- examples/ccn-lite-relay/Makefile | 4 ++-- examples/default/Makefile | 4 ++-- examples/hello-world/Makefile | 2 +- examples/ipc_pingpong/Makefile | 2 +- examples/rpl_udp/Makefile | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/dist/Makefile b/dist/Makefile index 9a04a36edc..744609aed5 100644 --- a/dist/Makefile +++ b/dist/Makefile @@ -9,7 +9,7 @@ # Set the name of your project: export PROJECT = foobar -# If not BOARD is found in the environment, use this default: +# If no BOARD is found in the environment, use this default: export BOARD ?= native # This has to be the absolute path to the RIOT base directory: @@ -39,7 +39,7 @@ export RIOTBASE ?= $(CURDIR)/../../RIOT # Change this to 0 show compiler invocation lines by default: export QUIET ?= 1 -## Modules to include: +# Modules to include: #USEMODULE += shell #USEMODULE += uart0 diff --git a/examples/ccn-lite-client/Makefile b/examples/ccn-lite-client/Makefile index b0f53ae99f..c440479e6c 100644 --- a/examples/ccn-lite-client/Makefile +++ b/examples/ccn-lite-client/Makefile @@ -1,7 +1,7 @@ # name of your project export PROJECT = ccn-lite-client -# If not BOARD is found in the environment, use this default: +# If no BOARD is found in the environment, use this default: export BOARD ?= native # This has to be the absolute path to the RIOT base directory: @@ -31,7 +31,7 @@ export RIOTBASE ?= $(CURDIR)/../../ # Change this to 0 show compiler invocation lines by default: export QUIET ?= 1 -## Modules to include: +# Modules to include: USEMODULE += config USEMODULE += shell diff --git a/examples/ccn-lite-relay/Makefile b/examples/ccn-lite-relay/Makefile index 9909381aeb..56e8c23789 100644 --- a/examples/ccn-lite-relay/Makefile +++ b/examples/ccn-lite-relay/Makefile @@ -1,7 +1,7 @@ # name of your project export PROJECT = ccn-lite-relay -# If not BOARD is found in the environment, use this default: +# If no BOARD is found in the environment, use this default: export BOARD ?= native # This has to be the absolute path to the RIOT base directory: @@ -31,7 +31,7 @@ export RIOTBASE ?= $(CURDIR)/../../ # Change this to 0 show compiler invocation lines by default: export QUIET ?= 1 -## Modules to include: +# Modules to include: USEMODULE += config USEMODULE += uart0 diff --git a/examples/default/Makefile b/examples/default/Makefile index 32c4fabfca..64c85060bd 100644 --- a/examples/default/Makefile +++ b/examples/default/Makefile @@ -1,7 +1,7 @@ # name of your project export PROJECT = default -# If not BOARD is found in the environment, use this default: +# If no BOARD is found in the environment, use this default: export BOARD ?= native # This has to be the absolute path to the RIOT base directory: @@ -31,7 +31,7 @@ export RIOTBASE ?= $(CURDIR)/../../ # Change this to 0 show compiler invocation lines by default: export QUIET ?= 1 -## Modules to include: +# Modules to include: USEMODULE += posix USEMODULE += uart0 diff --git a/examples/hello-world/Makefile b/examples/hello-world/Makefile index f426dc9935..e09d751a26 100644 --- a/examples/hello-world/Makefile +++ b/examples/hello-world/Makefile @@ -1,7 +1,7 @@ # name of your project export PROJECT = hello-world -# If not BOARD is found in the environment, use this default: +# If no BOARD is found in the environment, use this default: export BOARD ?= native # This has to be the absolute path to the RIOT base directory: diff --git a/examples/ipc_pingpong/Makefile b/examples/ipc_pingpong/Makefile index a3c630de89..4597db46a5 100644 --- a/examples/ipc_pingpong/Makefile +++ b/examples/ipc_pingpong/Makefile @@ -1,7 +1,7 @@ # name of your project export PROJECT = ipc_pingpong -# If not BOARD is found in the environment, use this default: +# If no BOARD is found in the environment, use this default: export BOARD ?= native # This has to be the absolute path to the RIOT base directory: diff --git a/examples/rpl_udp/Makefile b/examples/rpl_udp/Makefile index dec4d235ed..b0376da04a 100644 --- a/examples/rpl_udp/Makefile +++ b/examples/rpl_udp/Makefile @@ -1,7 +1,7 @@ # name of your project export PROJECT = rpl_udp -# If not BOARD is found in the environment, use this default: +# If no BOARD is found in the environment, use this default: export BOARD ?= native # This has to be the absolute path to the RIOT base directory: @@ -34,7 +34,7 @@ export QUIET ?= 1 # get rid of the mandatory RPL warning CFLAGS += "-Wno-cpp" -## Modules to include: +# Modules to include: USEMODULE += auto_init USEMODULE += shell