Skip to content
Snippets Groups Projects
  1. Oct 23, 2018
  2. Oct 15, 2018
  3. Aug 20, 2018
  4. Aug 16, 2018
  5. Aug 10, 2018
  6. Jul 06, 2018
    • Gaëtan Harter's avatar
      make: Add 'BUILDDEPS' variable · fb10a181
      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.
      fb10a181
  7. Jun 13, 2018
  8. May 03, 2018
  9. Apr 27, 2018
  10. Jan 30, 2018
    • Gaëtan Harter's avatar
      makefiles: Add an APPLICATION_MODULE variable · d724e71a
      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.
      d724e71a
  11. Jan 26, 2018
  12. Jul 17, 2017
  13. Jun 17, 2017
  14. Apr 10, 2017
  15. Apr 04, 2017
  16. Mar 10, 2017
  17. Mar 01, 2017
  18. Dec 22, 2016
  19. Aug 29, 2016
  20. Mar 21, 2016
  21. Mar 17, 2016
  22. Mar 16, 2016
  23. Mar 05, 2016
  24. Feb 23, 2016
  25. Aug 13, 2015
  26. Aug 04, 2015
    • Joakim Nohlgård's avatar
      make: Build with -Werror by default · e95a4c50
      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)
      e95a4c50
  27. Apr 30, 2015
  28. Apr 24, 2015
    • Joakim Nohlgård's avatar
      Makefile.include: Add docker target. · 8db628b1
      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.
      8db628b1
  29. Feb 08, 2015
  30. Aug 21, 2014
    • René Kijewski's avatar
      make: centralize wget/curl & unzip/7z feature test · a70ee0f0
      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.
      a70ee0f0
    • Hauke Petersen's avatar
      make: added CPU_MODEL & TERMFLAGS to Makefile.vars · 800edbcb
      Hauke Petersen authored
      - added CPU_MODEL variable
      - added TERMFLAGS variable
      - fixed a little style (dots on the end of comments)
      800edbcb
  31. Aug 05, 2014
  32. Jul 10, 2014
Loading