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
94f2a499
Unverified
Commit
94f2a499
authored
6 years ago
by
Gaëtan Harter
Committed by
cladmi
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
make: add LAZYSPONGE and LAZYSPONGE_FLAGS variables
parent
0528e090
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile.include
+5
-0
5 additions, 0 deletions
Makefile.include
makefiles/vars.inc.mk
+3
-0
3 additions, 0 deletions
makefiles/vars.inc.mk
with
8 additions
and
0 deletions
Makefile.include
+
5
−
0
View file @
94f2a499
...
...
@@ -186,6 +186,11 @@ ifeq (,$(UNZIP_HERE))
endif
endif
# Tool saving stdin to a file only on content update.
# It keeps the file timestamp if it would end up the same.
LAZYSPONGE
?=
$(
RIOTTOOLS
)
/lazysponge/lazysponge.py
LAZYSPONGE_FLAGS
?=
$(
if
$(
filter 1,
$(
QUIET
))
,,--verbose
)
ifeq
(, $(APPLICATION))
$(
error
An application name must be specified as APPLICATION.
)
endif
...
...
This diff is collapsed.
Click to expand it.
makefiles/vars.inc.mk
+
3
−
0
View file @
94f2a499
...
...
@@ -88,3 +88,6 @@ export DLCACHE # directory used to cache http downloads
export
DOWNLOAD_TO_FILE
# Use `$(DOWNLOAD_TO_FILE) $(DESTINATION) $(URL)` to download `$(URL)` to `$(DESTINATION)`.
export
DOWNLOAD_TO_STDOUT
# Use `$(DOWNLOAD_TO_STDOUT) $(URL)` to download `$(URL)` output `$(URL)` to stdout, e.g. to be piped into `tar xz`.
export
UNZIP_HERE
# Use `cd $(SOME_FOLDER) && $(UNZIP_HERE) $(SOME_FILE)` to extract the contents of the zip file `$(SOME_FILE)` into `$(SOME_FOLDER)`.
export
LAZYSPONGE
# Command saving stdin to a file only on content update.
export
LAZYSPONGE_FLAGS
# Parameters supplied to LAZYSPONGE.
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