- Oct 23, 2018
-
-
Gaëtan Harter authored
Currently the default value was set by `dist/tools/git/git-cache`. This moves/duplicates the default value in the build system.
-
- Oct 15, 2018
-
-
cladmi authored
It is used by Makefile.base so should be exported globally even if only defined by `llvm.inc.mk` for the moment.
-
- Aug 20, 2018
-
-
Gaëtan Harter authored
-
- Aug 16, 2018
-
-
Martine Lenders authored
-
- Aug 10, 2018
-
-
Sebastian Meiling authored
Introduce dist/pythonlibs directory to store RIOT python packages. This directory is exported via PYTHONPATH by the build system to make it commonly available.
-
- Jul 06, 2018
-
-
Gaëtan Harter authored
BUILDDEPS are files / make targets that should be build before compiling. It can include packages source download, generating headers, modules. It is the equivalent of `APPDEPS` but not limited to the application. It cannot be done right now with `APPDEPS` as it is used in `BASELIBS` and fixing it requires changing mips using it for source files.
-
- Jun 13, 2018
-
-
Gaëtan Harter authored
-
- May 03, 2018
-
-
Sebastian Meiling authored
Replacing usage will come in further commits/PRs.
-
- Apr 27, 2018
-
-
Josarn authored
-
- Jan 30, 2018
-
-
Gaëtan Harter authored
Set the application module name with APPLICATION_MODULE. The default module name is "application_$(APPLICATION)". This should fix name conflicts where an application/test has the same name as an existing module and so both write to the same archive.
-
- Jan 26, 2018
-
-
Gaëtan Harter authored
Despite its name, UNDEF are files that must be included during linking even if the linker would not by default.
-
- Jul 17, 2017
-
-
kYc0o authored
-
- Jun 17, 2017
-
-
Kaspar Schleiser authored
-
- Apr 10, 2017
-
-
Victor Arino authored
-
- Apr 04, 2017
-
-
Joakim Nohlgård authored
-
- Mar 10, 2017
-
-
Kaspar Schleiser authored
-
- Mar 01, 2017
-
-
Joakim Nohlgård authored
-
- Dec 22, 2016
-
-
Kaspar Schleiser authored
-
Kaspar Schleiser authored
-
- Aug 29, 2016
-
-
Kaspar Schleiser authored
-
- Mar 21, 2016
-
-
Kaspar Schleiser authored
-
- Mar 17, 2016
-
-
Joakim Nohlgård authored
-
- Mar 16, 2016
-
-
Joakim Nohlgård authored
-
- Mar 05, 2016
-
-
Kaspar Schleiser authored
-
- Feb 23, 2016
-
-
Ian Martin authored
-
- Aug 13, 2015
-
-
Kaspar Schleiser authored
-
- Aug 04, 2015
-
-
Joakim Nohlgård authored
Can be overridden from the environment by setting WERROR=0 also remove reversed logic for Werror in Makefile.buildtest (a typo caused Werror to be always enabled for all builds)
-
- Apr 30, 2015
-
-
Hauke Petersen authored
-
- Apr 24, 2015
-
-
Joakim Nohlgård authored
export BUILD_IN_DOCKER=1 to use Docker for building inside a Docker container. GDB debug file paths will be wrong after building inside the container, use the script provided in `dist/gdbinit-docker` to set the correct GDB substitution paths (copy and paste the contents into your `~/.gdbinit`) The environment variable DOCKER_FLAGS can be used to pass extra parameters to the Docker process.
-
- Feb 08, 2015
-
-
Joakim Nohlgård authored
- Makefile.base: Respect ARFLAGS when building static archives. - Makefile.cflags: Add default ARFLAGS. - Makefile.vars: Add description for ARFLAGS.
-
- Aug 21, 2014
-
-
René Kijewski authored
With many open PRs that could benefit from loading SDKs when needed, instead adding vast amounts of code to RIOTs master, this PR provides the "functions" `$(DOWNLOAD_TO_STDOUT)`, `$(DOWNLOAD_TO_FILE)`, and `$(UNZIP_HERE)`. The first "function" takes one argument, the URL from where to download the content. It is then piped to stdout. To be used e.g. with `tar xz`. The second "function" taken two arguments, the destination file name, and the source URL. If the previous invocation was interrupted, then the download gets continued, if possible. The last "function" takes one argument, the source ZIP file. The file gets extracted into the cwd, so best use this "function" with `cd $(SOME_WHERE) &&`. The clumsy name `$(UNZIP_HERE)` is taken because the program "unzip" takes the environment variable `UNZIP` as the source file, even if another file name was given on the command line. The rationale for that is that the hackers of "unzip" hate their users. Also they sacrifice hamsters to Satan.
-
Hauke Petersen authored
- added CPU_MODEL variable - added TERMFLAGS variable - fixed a little style (dots on the end of comments)
-
- Aug 05, 2014
-
-
Hauke Petersen authored
- added targets to Makefile.include - added DEBUGSERVER and RESET vars to Makefile.vars - added output of those to Makefile.buildtests
-
- Jul 10, 2014
-
-
René Kijewski authored
-