Skip to content
Snippets Groups Projects
Commit aeef8923 authored by René Kijewski's avatar René Kijewski
Browse files

Merge pull request #1858 from OlegHahm/dist_makefile

make: doc: clean up dist Makefile
parents 16675069 b0a65e87
No related branches found
No related tags found
No related merge requests found
...@@ -2,23 +2,18 @@ ...@@ -2,23 +2,18 @@
#### Sample Makefile for building applications with the RIOT OS #### Sample Makefile for building applications with the RIOT OS
#### ####
#### The example file system layout is: #### The example file system layout is:
#### ./application makefile #### ./application Makefile
#### ../../RIOT #### ../../RIOT
#### ####
# Set the name of your application: # Set the name of your application:
export APPLICATION = foobar APPLICATION = foobar
# If no BOARD is found in the environment, use this default: # 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: # This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../../RIOT 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 this to enable scheduler statistics for ps: # Uncomment this to enable scheduler statistics for ps:
#CFLAGS += -DSCHEDSTATISTICS #CFLAGS += -DSCHEDSTATISTICS
...@@ -33,7 +28,7 @@ export RIOTBASE ?= $(CURDIR)/../../RIOT ...@@ -33,7 +28,7 @@ export RIOTBASE ?= $(CURDIR)/../../RIOT
#CFLAGS += -DDEVELHELP #CFLAGS += -DDEVELHELP
# Change this to 0 show compiler invocation lines by default: # Change this to 0 show compiler invocation lines by default:
export QUIET ?= 1 QUIET ?= 1
# Modules to include: # Modules to include:
...@@ -41,15 +36,13 @@ export QUIET ?= 1 ...@@ -41,15 +36,13 @@ export QUIET ?= 1
#USEMODULE += uart0 #USEMODULE += uart0
#USEMODULE += posix #USEMODULE += posix
#USEMODULE += vtimer #USEMODULE += vtimer
#USEMODULE += sht11 #USEMODULE += defaulttransceiver
#USEMODULE += ltc4150 #USEMODULE += sixlowpan
#USEMODULE += cc110x
#USEMODULE += fat
#export INCLUDES += -Iapplication_include #export INCLUDES += -Iapplication_include
# Specify custom dependencies for your application here ... # Specify custom dependencies for your application here ...
# export APPDEPS = app_data.h config.h # APPDEPS = app_data.h config.h
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment