Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
aeef8923
Commit
aeef8923
authored
10 years ago
by
René Kijewski
Browse files
Options
Downloads
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dist/Makefile
+8
-15
8 additions, 15 deletions
dist/Makefile
with
8 additions
and
15 deletions
dist/Makefile
+
8
−
15
View file @
aeef8923
...
@@ -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
m
akefile
#### ./application
M
akefile
#### ../../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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment