Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc, buildsystem: Add a Version Check for Doxygen, Fix doc* Target Execution #21277

Merged
merged 2 commits into from
Mar 7, 2025

Conversation

crasbe
Copy link
Contributor

@crasbe crasbe commented Mar 6, 2025

Contribution description

Doxygen receives a lot of updates (and lately some updates that fixed issues found when generating the RIOT documentation) and releases happen more recently than a couple of years ago.
Unfortunately some (cough debian based) distributions don't update it. Ubuntu 22.04 LTS for example will probably be forever stuck at version 1.9.1 from 2021.

To avoid issues with malformatted documentation due to an outdated Doxygen version, this PR adds a warning if the Doxygen version is too old. The warning is delibrately put at the end of the Make process due to the wall of warnings generated by Doxygen.

Request for comments: I don't think the solution with awk is super pretty, but doing stuff like that with Make is quite annoying. Another option would be to have a dedicated check_version.sh.

It probably makes sense to wait with merging this until after Doxygen 1.14.0 is released. But on the other hand, the note is still valid, even before the release 🤷‍♂️


During the development of this PR, some issues with the build system surfaced regarding the doc and doc- targets. The buildsystem: fix execution of doc targets commit fixes that. The details are outlined in issue #21278.

Testing procedure

Run make doc on a machine with a current release version of Doxygen (1.14.0 is not released yet) and observe the output:

~/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen$ make doc
( cat riot.doxyfile ; echo "GENERATE_HTML = yes" ) | doxygen -
...
/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/sys/include/net/gnrc/netif/pktq/type.h:13: warning: Potential recursion while resolving \ref command!
/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/sys/include/net/gnrc/netif/pktq.h:14: warning: Potential recursion while resolving \ref command!

RIOT documentation successfully generated at file:///home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen/html/index.html
Warning: Doxygen version 1.12.0 is too old. It is recommended to use at least version 1.14.0 to avoid incorrectly formatted output.

If you updated to the latest master branch of Doxygen and compiled it yourself, the warning will not be generated:

~/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen$ make doc
( cat riot.doxyfile ; echo "GENERATE_HTML = yes" ) | doxygen -
...
/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/sys/include/net/gnrc/netif/pktq/type.h:13: warning: Potential recursion while resolving \ref command!
/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/sys/include/net/gnrc/netif/pktq.h:14: warning: Potential recursion while resolving \ref command!

RIOT documentation successfully generated at file:///home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen/html/index.html

The second part of this PR can be tested with the following commands:

Current master:

~/RIOTstuff/riot-vanilla/RIOT$ make -C examples/basic/hello-world doc
make: Entering directory '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world'
make -BC /home/cbuec/RIOTstuff/riot-vanilla/RIOT doc
*** ERROR: unrecognized target "makefiles/color.inc.mk"

Welcome to RIOT - The friendly OS for IoT!

You executed 'make' from the base directory.
Usually, you should run 'make' in your application's directory instead.

Please see our Quick Start Guide at:
    https://doc.riot-os.org/getting-started.html
You can ask questions or discuss with other users on our forum:
    https://forum.riot-os.org

Available targets for the RIOT base directory include:
 generate-{board,driver,example,module,pkg,test,features}
 info-{applications,boards,emulated-boards} info-applications-supported-boards
 print-versions
 clean distclean pkg-clean
 doc doc-{man,latex}

==> tl;dr Try running:
    cd examples/basic/default
    make BOARD=<INSERT_BOARD_NAME>
make[1]: *** [Makefile:83: makefiles/color.inc.mk] Error 1
make: *** [/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/../../../Makefile.include:883: doc] Error 2
make: Leaving directory '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world'
~/RIOTstuff/riot-vanilla/RIOT$ make -C examples/basic/hello-world doc-man
make: Entering directory '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world'
make: *** No rule to make target 'doc-man'.  Stop.
make: Leaving directory '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world'

This PR:

~/RIOTstuff/riot-debug-doc/RIOT$ make -C examples/basic/hello-world doc
make: Entering directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/examples/basic/hello-world'
make -C /home/cbuec/RIOTstuff/riot-debug-doc/RIOT doc
"make" -BC doc/doxygen doc
awk 'NR == 1 {print $0,"{#coc}"} NR > 1 {print $0}' ../../CODE_OF_CONDUCT.md > src/coc.md
( cat riot.doxyfile ; echo "GENERATE_HTML = yes" ) | doxygen -
...
~/RIOTstuff/riot-debug-doc/RIOT$ make -C examples/basic/hello-world doc-man
make: Entering directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/examples/basic/hello-world'
make -C /home/cbuec/RIOTstuff/riot-debug-doc/RIOT doc-man
"make" -BC doc/doxygen doc-man
awk 'NR == 1 {print $0,"{#coc}"} NR > 1 {print $0}' ../../CODE_OF_CONDUCT.md > src/coc.md
( cat riot.doxyfile ; echo "GENERATE_MAN = yes" ) | doxygen -
...

Issues/PRs references

Related to the work in #21106 and #21220.

Fixes #21278.

@crasbe crasbe requested review from aabadie and jia200x as code owners March 6, 2025 21:14
@github-actions github-actions bot added the Area: doc Area: Documentation label Mar 6, 2025
@OlegHahm
Copy link
Member

OlegHahm commented Mar 6, 2025

I like the idea. However, I think you need to tweak the warning a bit to make it more visible. Right now the output of make doc is very verbose and consequently the warning is easy to be overlooked. So, my proposal is to either redirect the irrelevant part of the doxygen output (into a log file or something alike) or make the warning bold/colored/blinking...

@crasbe
Copy link
Contributor Author

crasbe commented Mar 6, 2025

I like the red font idea. I'm not sure about the "Note", maybe rather "WARNING:" in front? to make it clear that it isn't an error per sé, but could lead to issues.

image

@OlegHahm
Copy link
Member

OlegHahm commented Mar 6, 2025

I tend to go for "Warning" (no caps) to emphasize that the user should pay attention but it is only a warning (no error). In the end, probably >90% of all developers who ever run make doc locally will get this output.

@crasbe
Copy link
Contributor Author

crasbe commented Mar 6, 2025

Screenshot 2025-03-06 235557

This is what the output looks like now.

@crasbe crasbe added Type: enhancement The issue suggests enhanceable parts / The PR enhances parts of the codebase / documentation CI: ready for build If set, CI server will compile all applications for all available boards for the labeled PR labels Mar 6, 2025
@riot-ci
Copy link

riot-ci commented Mar 6, 2025

Murdock results

✔️ PASSED

7728ef2 buildsystem: fix execution of doc targets

Success Failures Total Runtime
10271 0 10271 11m:14s

Artifacts

Copy link
Member

@maribu maribu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like this one a lot, thx :)

Copy link
Contributor

@mguetschow mguetschow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for tackling! I've tried it on my machine with doxygen 1.9.4 and unfortunately it doesn't print the warning. It does though when comparing to be greater than. I guess awk doesn't compare the numbers as expected.

@crasbe
Copy link
Contributor Author

crasbe commented Mar 7, 2025

I'm not really sure why the Feature List is not supposed to be part of the man or latex output.
The feature generation was added by @maribu in #20366.

@maribu Is that the intended behavior?

@maribu
Copy link
Member

maribu commented Mar 7, 2025

@maribu Is that the intended behavior?

No, that was an oversight :-/

@crasbe
Copy link
Contributor Author

crasbe commented Mar 7, 2025

@maribu Is that the intended behavior?

No, that was an oversight :-/

No worries. Without having to distinguish between the doc-targets, the Makefile got a little simpler, so that's a good thing :)

@crasbe
Copy link
Contributor Author

crasbe commented Mar 7, 2025

Some test traces to verify that everything works as it should:

~/RIOTstuff/riot-debug-doc/RIOT$ doxygen --version
1.12.0 (c73f5d30f9e8b1df5ba15a1d064ff2067cbb8267)

The important part here is that the GENERATE_xxxx variable is set correctly. GENERATE_HTML for make doc, GENERATE_MAN for make doc-man and GENERATE_LATEX for make doc-latex.

~/RIOTstuff/riot-debug-doc/RIOT$ make doc
"make" -BC doc/doxygen
make[1]: Entering directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'
awk 'NR == 1 {print $0,"{#coc}"} NR > 1 {print $0}' ../../CODE_OF_CONDUCT.md > src/coc.md
( cat riot.doxyfile ; echo "GENERATE_HTML = yes" ) | doxygen -
warning: Tag 'OUTPUT_TEXT_DIRECTION' at line 102 of file '-' has become obsolete.
...
/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/sys/include/net/gnrc/netif/pktq.h:14: warning: Potential recursion while resolving \ref command!

RIOT documentation successfully generated at file:///home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen/html/index.html
Warning: Doxygen version 1.12.0 is too old. It is recommended to use at least version 1.14.0 to avoid incorrectly formatted output.
make[1]: Leaving directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'
~/RIOTstuff/riot-debug-doc/RIOT$ make doc-man
"make" -BC doc/doxygen
make[1]: Entering directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'
awk 'NR == 1 {print $0,"{#coc}"} NR > 1 {print $0}' ../../CODE_OF_CONDUCT.md > src/coc.md
( cat riot.doxyfile ; echo "GENERATE_MAN = yes" ) | doxygen -
warning: Tag 'OUTPUT_TEXT_DIRECTION' at line 102 of file '-' has become obsolete.
...
/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/sys/include/net/gnrc/netif/pktq.h:14: warning: Potential recursion while resolving \ref command!
Warning: Doxygen version 1.12.0 is too old. It is recommended to use at least version 1.14.0 to avoid incorrectly formatted output.
make[1]: Leaving directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'
~/RIOTstuff/riot-debug-doc/RIOT$ make doc-latex
"make" -BC doc/doxygen
make[1]: Entering directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'
awk 'NR == 1 {print $0,"{#coc}"} NR > 1 {print $0}' ../../CODE_OF_CONDUCT.md > src/coc.md
( cat riot.doxyfile ; echo "GENERATE_LATEX= yes" ) | doxygen -
warning: Tag 'OUTPUT_TEXT_DIRECTION' at line 102 of file '-' has become obsolete.
...
/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/sys/include/net/gnrc/netif/pktq.h:14: warning: Potential recursion while resolving \ref command!
Warning: Doxygen version 1.12.0 is too old. It is recommended to use at least version 1.14.0 to avoid incorrectly formatted output.
make[1]: Leaving directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'

Makefile Outdated
# Extract the documentation type that is to be generated and export it for
# the doxygen Makefile
ifneq ($(findstring doc-,$(MAKECMDGOALS)),)
DOCUMENTATION_FORMAT := $(patsubst doc-%,%,$(filter doc-%, $(MAKECMDGOALS)))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't his break with make doc doc-man doc-latex?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. It broke in many ways :D

I pushed a commit to fix it. Now the approach is to give the Doxygen Makefile the original target and have it determine the DOCUMENTATION_FORMAT itself. Otherwise it is impossible to distinguish it.

I added an option to have html for make doc as well, but now the issue I had was that got called nine times, three times for the targets and three times due to the DOCUMENTATION_FORMAT.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The trace of make doc doc-man doc-latex with stderr piped to /dev/null to get rid of the Doxygen warnings:

$ make doc doc-man doc-latex 2>/dev/null
"make" -BC doc/doxygen doc
make[1]: Entering directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'
awk 'NR == 1 {print $0,"{#coc}"} NR > 1 {print $0}' ../../CODE_OF_CONDUCT.md > src/coc.md
( cat riot.doxyfile ; echo "GENERATE_HTML = yes" ) | doxygen -

RIOT documentation successfully generated at file:///home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen/html/index.html
Warning: Doxygen version 1.12.0 is too old. It is recommended to use at least version 1.14.0 to avoid incorrectly formatted output.
make[1]: Leaving directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'
"make" -BC doc/doxygen doc-man
make[1]: Entering directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'
awk 'NR == 1 {print $0,"{#coc}"} NR > 1 {print $0}' ../../CODE_OF_CONDUCT.md > src/coc.md
( cat riot.doxyfile ; echo "GENERATE_MAN = yes" ) | doxygen -

RIOT documentation successfully generated at file:///home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen/man/man3
Warning: Doxygen version 1.12.0 is too old. It is recommended to use at least version 1.14.0 to avoid incorrectly formatted output.
make[1]: Leaving directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'
"make" -BC doc/doxygen doc-latex
make[1]: Entering directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'
awk 'NR == 1 {print $0,"{#coc}"} NR > 1 {print $0}' ../../CODE_OF_CONDUCT.md > src/coc.md
( cat riot.doxyfile ; echo "GENERATE_LATEX= yes" ) | doxygen -

RIOT documentation successfully generated at file:///home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen/latex/index.tex
Warning: Doxygen version 1.12.0 is too old. It is recommended to use at least version 1.14.0 to avoid incorrectly formatted output.
make[1]: Leaving directory '/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/doc/doxygen'

@mguetschow
Copy link
Contributor

Oh and unfortunately this PR also breaks make -C examples/basic/hello-world doc 🙈

@crasbe
Copy link
Contributor Author

crasbe commented Mar 7, 2025

Oh and unfortunately this PR also breaks make -C examples/basic/hello-world doc 🙈

This does not seem to work for me with master either:

cbuec@W11nMate:~/RIOTstuff$ mkdir riot-vanilla
cbuec@W11nMate:~/RIOTstuff$ cd riot-vanilla/
cbuec@W11nMate:~/RIOTstuff/riot-vanilla$ git clone https://github.com/RIOT-OS/RIOT
Cloning into 'RIOT'...
remote: Enumerating objects: 370088, done.
remote: Counting objects: 100% (314/314), done.
remote: Compressing objects: 100% (203/203), done.
remote: Total 370088 (delta 183), reused 114 (delta 111), pack-reused 369774 (from 3)
Receiving objects: 100% (370088/370088), 157.19 MiB | 12.47 MiB/s, done.
Resolving deltas: 100% (253339/253339), done.
Updating files: 100% (15815/15815), done.
cbuec@W11nMate:~/RIOTstuff/riot-vanilla$ cd RIOT/
cbuec@W11nMate:~/RIOTstuff/riot-vanilla/RIOT$ make -C examples/basic/hello-world doc
make: Entering directory '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world'
make -BC /home/cbuec/RIOTstuff/riot-vanilla/RIOT doc
*** ERROR: unrecognized target "makefiles/color.inc.mk"

Welcome to RIOT - The friendly OS for IoT!

You executed 'make' from the base directory.
Usually, you should run 'make' in your application's directory instead.

Please see our Quick Start Guide at:
    https://doc.riot-os.org/getting-started.html
You can ask questions or discuss with other users on our forum:
    https://forum.riot-os.org

Available targets for the RIOT base directory include:
 generate-{board,driver,example,module,pkg,test,features}
 info-{applications,boards,emulated-boards} info-applications-supported-boards
 print-versions
 clean distclean pkg-clean
 doc doc-{man,latex}

==> tl;dr Try running:
    cd examples/basic/default
    make BOARD=<INSERT_BOARD_NAME>
make[1]: *** [Makefile:83: makefiles/color.inc.mk] Error 1
make: *** [/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/../../../Makefile.include:883: doc] Error 2
make: Leaving directory '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world'

@crasbe
Copy link
Contributor Author

crasbe commented Mar 7, 2025

I also added the "Documentation successfully generated" strings for the latex and man targets, while we're at it..

@crasbe
Copy link
Contributor Author

crasbe commented Mar 7, 2025

Oh and unfortunately this PR also breaks make -C examples/basic/hello-world doc 🙈

So what happens is that make -C examples/basic/hello-world doc enters the directory $(RIOTBASE)/examples/basic/hello-world and includes $(RIOTBASE)/Makefile.include, which calls $(RIOTBASE)/Makefile:

RIOT/Makefile.include

Lines 882 to 883 in 999220c

doc:
$(MAKE) -BC $(RIOTBASE) doc

And for some reason, when the $(RIOTBASE)/Makefile is called, the includes are considered as a target?
*** ERROR: unrecognized target "makefiles/color.inc.mk"

This does not change even when I add the typical $(RIOTMAKE) stuff: *** ERROR: unrecognized target "/home/cbuec/RIOTstuff/riot-debug-doc/RIOT/makefiles/color.inc.mk"

Even when commenting out the includes, this error is shown: *** ERROR: unrecognized target "Makefile"

@crasbe
Copy link
Contributor Author

crasbe commented Mar 7, 2025

With all debug information enabled, we get some more clues:

Make Log
~/RIOTstuff/riot-vanilla/RIOT$ make -d -C examples/basic/hello-world doc
GNU Make 4.3
Built for x86_64-pc-linux-gnu
Copyright (C) 1988-2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Reading makefile 'Makefile'...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/../../../Makefile.include' (search path) (no ~ expansion)...
Reading makefile 'Makefile.local' (search path) (don't care) (no ~ expansion)...
Reading makefile 'Makefile.ci' (search path) (don't care) (no ~ expansion)...
make: Entering directory '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world'
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/variables.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/strings.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pkg/nimble.adv.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/checks.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/docker.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi_special.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/color.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info-nproc.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boards.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependencies_debug.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-settings.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/scan-build.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.features' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.features' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/common_features.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.features' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_boards.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_cpus.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pseudomodules.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_regular.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.default' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.default' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/kconfig.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/kconfiglib.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/fixdep.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependency_resolution.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/stdio.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/test_utils/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_modules.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependency_resolution.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/stdio.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/test_utils/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_idle_thread/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_common/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio_linux/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_pm/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_modules.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependency_resolution.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/stdio.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/test_utils/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/Makefile.dep' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_idle_thread/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_common/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio_linux/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_pm/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_modules.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_no_recursive_deps.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_deps.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_modules.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_existing.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot_dfu-util.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.include' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.include' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/arch/native.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/serial.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/.inc.mk' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/toolchain/gnu.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/gdb.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/ubsan.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cflags.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/VERSION' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/EXTRAVERSION' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/git_version.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.include' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/slot_aux/Makefile.include' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/preprocessor/Makefile.include' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/auto_init/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio_linux/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led0/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led1/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led2/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led3/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led4/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led5/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led6/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led7/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_leds/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_pm/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_uart/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor_successor/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.include' (search path) (don't care) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/bindist.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/modules.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/programmer.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tests/tests.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/clang_tidy.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/eclipse.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/vars.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/targets.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/usb-codes.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/dist/tools/desvirt/Makefile.desvirt' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/mcuboot.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/murdock.inc.mk' (search path) (no ~ expansion)...
Reading makefile '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-targets.inc.mk' (search path) (no ~ expansion)...
Updating makefiles....
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-targets.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-targets.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-targets.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-targets.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-targets.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/murdock.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/murdock.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/murdock.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/murdock.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/murdock.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/mcuboot.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/mcuboot.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/mcuboot.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/mcuboot.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/mcuboot.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/dist/tools/desvirt/Makefile.desvirt'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/dist/tools/desvirt/Makefile.desvirt'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/dist/tools/desvirt/Makefile.desvirt'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/dist/tools/desvirt/Makefile.desvirt'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/dist/tools/desvirt/Makefile.desvirt'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/usb-codes.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/usb-codes.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/usb-codes.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/usb-codes.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/usb-codes.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/targets.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/targets.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/targets.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/targets.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/targets.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/vars.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/vars.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/vars.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/vars.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/vars.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/eclipse.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/eclipse.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/eclipse.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/eclipse.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/eclipse.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/clang_tidy.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/clang_tidy.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/clang_tidy.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/clang_tidy.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/clang_tidy.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tests/tests.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tests/tests.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tests/tests.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tests/tests.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tests/tests.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/programmer.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/programmer.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/programmer.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/programmer.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/programmer.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/modules.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/modules.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/modules.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/modules.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/modules.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/bindist.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/bindist.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/bindist.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/bindist.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/bindist.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor_successor/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor_successor/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor_successor/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor_successor/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor_successor/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor_successor/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor_successor/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/preprocessor/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_uart/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_uart/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_uart/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_uart/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_uart/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_uart/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_uart/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_pm/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_pm/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_pm/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_pm/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_pm/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_pm/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_pm/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_leds/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_leds/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_leds/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_leds/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_leds/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_leds/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_leds/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led7/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led7/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led7/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led7/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led7/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led7/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led7/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led6/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led6/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led6/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led6/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led6/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led6/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led6/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led5/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led5/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led5/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led5/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led5/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led5/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led5/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led4/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led4/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led4/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led4/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led4/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led4/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led4/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led3/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led3/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led3/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led3/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led3/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led3/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led3/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led2/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led2/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led2/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led2/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led2/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led2/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led2/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led1/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led1/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led1/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led1/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led1/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led1/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led1/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led0/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led0/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led0/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led0/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led0/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led0/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_led0/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio_linux/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio_linux/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio_linux/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio_linux/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio_linux/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio_linux/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio_linux/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init_gpio/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_init/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/auto_init/Makefile.include'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/auto_init/Makefile.include' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/auto_init/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/auto_init/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/auto_init/Makefile.include'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/auto_init/Makefile.include'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/auto_init/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/preprocessor/Makefile.include'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/preprocessor/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/preprocessor/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/preprocessor/Makefile.include'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/preprocessor/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/slot_aux/Makefile.include'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/slot_aux/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/slot_aux/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/slot_aux/Makefile.include'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/slot_aux/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.include'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.include'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/git_version.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/git_version.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/git_version.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/git_version.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/git_version.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/EXTRAVERSION'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/EXTRAVERSION' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/EXTRAVERSION'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/EXTRAVERSION'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/EXTRAVERSION'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/EXTRAVERSION'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/EXTRAVERSION'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/VERSION'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/VERSION' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/VERSION'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/VERSION'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/VERSION'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/VERSION'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/VERSION'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cflags.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cflags.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cflags.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cflags.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cflags.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/ubsan.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/ubsan.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/ubsan.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/ubsan.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/ubsan.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/gdb.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/gdb.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/gdb.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/gdb.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/gdb.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/toolchain/gnu.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/toolchain/gnu.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/toolchain/gnu.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/toolchain/gnu.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/toolchain/gnu.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/.inc.mk'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/.inc.mk' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/.inc.mk'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/.inc.mk'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/serial.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/serial.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/serial.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/serial.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/serial.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/arch/native.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/arch/native.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/arch/native.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/arch/native.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/arch/native.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.include'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.include'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.include'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.include'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.include'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot_dfu-util.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot_dfu-util.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot_dfu-util.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot_dfu-util.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boot/riotboot_dfu-util.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_existing.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_existing.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_existing.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_existing.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_existing.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_modules.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_modules.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_modules.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_modules.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_modules.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_deps.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_deps.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_deps.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_deps.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_deps.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_no_recursive_deps.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_no_recursive_deps.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_no_recursive_deps.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_no_recursive_deps.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_no_recursive_deps.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_modules.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_modules.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_modules.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_modules.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_modules.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_pm/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_pm/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_pm/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_pm/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_pm/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_pm/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_pm/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio_linux/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio_linux/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio_linux/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio_linux/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio_linux/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio_linux/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio_linux/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_common/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_common/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_common/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_common/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_common/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_common/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_common/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_idle_thread/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_idle_thread/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_idle_thread/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_idle_thread/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_idle_thread/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_idle_thread/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_idle_thread/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.dep'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.dep'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/Makefile.dep'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/Makefile.dep'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/test_utils/Makefile.dep'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/test_utils/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/test_utils/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/test_utils/Makefile.dep'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/test_utils/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/stdio.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/stdio.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/stdio.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/stdio.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/stdio.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.dep'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.dep'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.dep'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.dep'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.dep'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.dep'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.dep'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.dep'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.dep'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.dep'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.dep'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependency_resolution.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependency_resolution.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependency_resolution.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependency_resolution.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependency_resolution.inc.mk'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_modules.inc.mk'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_pm/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio_linux/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_gpio/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_common/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_idle_thread/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_pm/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio_linux/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_gpio/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_common/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_idle_thread/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/test_utils/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/stdio.inc.mk'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependency_resolution.inc.mk'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_modules.inc.mk'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/sys/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/stdio_native/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph_uart/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/periph/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/native_drivers/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/libc/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/fdcan/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/cpu/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_thread/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_panic/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_msg/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_lib/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core_init/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/core/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board_common_init/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/board/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/sys/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/stdio_native/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph_uart/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/periph/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/native_drivers/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/libc/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/fdcan/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/cpu/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_thread/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_panic/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_msg/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_lib/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core_init/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/core/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board_common_init/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/board/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/drivers/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/test_utils/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/stdio.inc.mk'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/sys/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.gnu.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/Makefile.board.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.dep'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependency_resolution.inc.mk'.
 Pruning file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/features_check.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/fixdep.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/fixdep.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/fixdep.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/fixdep.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/fixdep.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/kconfiglib.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/kconfiglib.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/kconfiglib.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/kconfiglib.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/tools/kconfiglib.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/kconfig.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/kconfig.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/kconfig.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/kconfig.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/kconfig.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.default'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.default' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.default'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.default'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.default'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.default'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.default'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.default'.
  File '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.default' does not exist.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.default'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.default'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.default'.
 Must remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.default'.
 Failed to remake target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.default'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_regular.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_regular.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_regular.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_regular.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/defaultmodules_regular.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pseudomodules.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pseudomodules.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pseudomodules.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pseudomodules.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pseudomodules.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_cpus.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_cpus.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_cpus.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_cpus.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_cpus.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_boards.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_boards.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_boards.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_boards.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/deprecated_boards.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.features'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.features'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.features'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.features'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/cpu/native/Makefile.features'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/common_features.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/common_features.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/common_features.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/common_features.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/common_features.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.features'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.features'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.features'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.features'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/boards/native/Makefile.features'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.features'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.features'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.features'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.features'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/Makefile.features'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/scan-build.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/scan-build.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/scan-build.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/scan-build.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/scan-build.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-settings.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-settings.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-settings.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-settings.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/cargo-settings.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependencies_debug.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependencies_debug.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependencies_debug.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependencies_debug.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/dependencies_debug.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boards.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boards.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boards.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boards.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/boards.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info-nproc.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info-nproc.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info-nproc.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info-nproc.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/info-nproc.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/color.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/color.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/color.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/color.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/color.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi_special.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi_special.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi_special.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi_special.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi_special.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/ansi.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/docker.inc.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/docker.inc.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/docker.inc.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/docker.inc.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/docker.inc.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/checks.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/checks.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/checks.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/checks.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/checks.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pkg/nimble.adv.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pkg/nimble.adv.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pkg/nimble.adv.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pkg/nimble.adv.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/pkg/nimble.adv.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/strings.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/strings.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/strings.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/strings.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/strings.mk'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/variables.mk'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/variables.mk'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/variables.mk'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/variables.mk'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/makefiles/utils/variables.mk'.
 Considering target file 'Makefile.ci'.
  File 'Makefile.ci' does not exist.
  Looking for an implicit rule for 'Makefile.ci'.
  No implicit rule found for 'Makefile.ci'.
  Finished prerequisites of target file 'Makefile.ci'.
 Must remake target 'Makefile.ci'.
 Failed to remake target file 'Makefile.ci'.
 Considering target file 'Makefile.local'.
  File 'Makefile.local' does not exist.
  Looking for an implicit rule for 'Makefile.local'.
  No implicit rule found for 'Makefile.local'.
  Finished prerequisites of target file 'Makefile.local'.
 Must remake target 'Makefile.local'.
 Failed to remake target file 'Makefile.local'.
 Considering target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/../../../Makefile.include'.
  Looking for an implicit rule for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/../../../Makefile.include'.
  No implicit rule found for '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/../../../Makefile.include'.
  Finished prerequisites of target file '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/../../../Makefile.include'.
 No need to remake target '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/../../../Makefile.include'.
 Considering target file 'Makefile'.
  Looking for an implicit rule for 'Makefile'.
  No implicit rule found for 'Makefile'.
  Finished prerequisites of target file 'Makefile'.
 No need to remake target 'Makefile'.
Updating goal targets....
Considering target file 'doc'.
 File 'doc' does not exist.
 Finished prerequisites of target file 'doc'.
Must remake target 'doc'.
make -BC /home/cbuec/RIOTstuff/riot-vanilla/RIOT doc
Putting child 0x5594b8c7c0d0 (doc) PID 1423609 on the chain.
Live child 0x5594b8c7c0d0 (doc) PID 1423609
GNU Make 4.3
Built for x86_64-pc-linux-gnu
Copyright (C) 1988-2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Reading makefile 'Makefile'...
Reading makefile 'makefiles/boards.inc.mk' (search path) (no ~ expansion)...
Reading makefile 'makefiles/app_dirs.inc.mk' (search path) (no ~ expansion)...
Reading makefile 'makefiles/tools/riotgen.inc.mk' (search path) (no ~ expansion)...
Reading makefile 'makefiles/color.inc.mk' (search path) (don't care) (no ~ expansion)...
Reading makefile 'makefiles/tests.inc.mk' (search path) (don't care) (no ~ expansion)...
Reading makefile 'makefiles/color.inc.mk' (search path) (no ~ expansion)...
Updating makefiles....
 Considering target file 'makefiles/color.inc.mk'.
  Looking for an implicit rule for 'makefiles/color.inc.mk'.
  No implicit rule found for 'makefiles/color.inc.mk'.
  Using default recipe for 'makefiles/color.inc.mk'.
  Finished prerequisites of target file 'makefiles/color.inc.mk'.
 Making 'makefiles/color.inc.mk' due to always-make flag.
 Must remake target 'makefiles/color.inc.mk'.
Putting child 0x560753d06790 (makefiles/color.inc.mk) PID 1423618 on the chain.
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423618
*** ERROR: unrecognized target "makefiles/color.inc.mk"
Reaping winning child 0x560753d06790 PID 1423618
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423619

Reaping winning child 0x560753d06790 PID 1423619
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423620
Welcome to RIOT - The friendly OS for IoT!
Reaping winning child 0x560753d06790 PID 1423620
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423621

Reaping winning child 0x560753d06790 PID 1423621
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423622
You executed 'make' from the base directory.
Reaping winning child 0x560753d06790 PID 1423622
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423623
Usually, you should run 'make' in your application's directory instead.
Reaping winning child 0x560753d06790 PID 1423623
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423624

Reaping winning child 0x560753d06790 PID 1423624
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423625
Please see our Quick Start Guide at:
Reaping winning child 0x560753d06790 PID 1423625
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423626
    https://doc.riot-os.org/getting-started.html
Reaping winning child 0x560753d06790 PID 1423626
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423627
You can ask questions or discuss with other users on our forum:
Reaping winning child 0x560753d06790 PID 1423627
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423628
    https://forum.riot-os.org
Reaping winning child 0x560753d06790 PID 1423628
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423629

Reaping winning child 0x560753d06790 PID 1423629
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423630
Available targets for the RIOT base directory include:
Reaping winning child 0x560753d06790 PID 1423630
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423631
 generate-{board,driver,example,module,pkg,test,features}
Reaping winning child 0x560753d06790 PID 1423631
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423632
 info-{applications,boards,emulated-boards} info-applications-supported-boards
Reaping winning child 0x560753d06790 PID 1423632
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423633
 print-versions
Reaping winning child 0x560753d06790 PID 1423633
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423634
 clean distclean pkg-clean
Reaping winning child 0x560753d06790 PID 1423634
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423635
 doc doc-{man,latex}
Reaping winning child 0x560753d06790 PID 1423635
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423636

Reaping winning child 0x560753d06790 PID 1423636
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423637
==> tl;dr Try running:
Reaping winning child 0x560753d06790 PID 1423637
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423638
    cd examples/basic/default
Reaping winning child 0x560753d06790 PID 1423638
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423639
    make BOARD=<INSERT_BOARD_NAME>
Reaping winning child 0x560753d06790 PID 1423639
Live child 0x560753d06790 (makefiles/color.inc.mk) PID 1423640
Reaping losing child 0x560753d06790 PID 1423640
make[1]: *** [Makefile:83: makefiles/color.inc.mk] Error 1
Removing child 0x560753d06790 PID 1423640 from chain.
Reaping losing child 0x5594b8c7c0d0 PID 1423609
make: *** [/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world/../../../Makefile.include:883: doc] Error 2
Removing child 0x5594b8c7c0d0 PID 1423609 from chain.
make: Leaving directory '/home/cbuec/RIOTstuff/riot-vanilla/RIOT/examples/basic/hello-world'

The important part here is in the lower part, when make is called by Makefile.include with $(MAKE) -BC $(RIOTBASE) doc

Making 'makefiles/color.inc.mk' due to always-make flag.
Must remake target 'makefiles/color.inc.mk'.

The -B flag forces make to recreate the file. However I'm not sure why it considers it to be a target.
Removing the B flag from line 883 in $(RIOTBASE)/Makefile.include makes it work. I don't know if that'll have side effects though.

But IMO this is way out of scope for this PR already 😅

@crasbe
Copy link
Contributor Author

crasbe commented Mar 7, 2025

@mguetschow let me know when I can squash this.

I created a separate issue and I think I'd prefer to have a separate PR for it as well, even though it probably only needs to have one line changed.
It's just such a different thing and if it has any side effects, I'd like to have it findable.

I added the fix for the issue to this PR and added the testing procedure to the first message.

@crasbe crasbe force-pushed the pr/doxygen_versioncheck branch from bef9041 to 1e3202d Compare March 7, 2025 16:17
@github-actions github-actions bot added the Area: build system Area: Build system label Mar 7, 2025
@crasbe crasbe changed the title doc: Add a Version Check for Doxygen doc, buildsystem: Add a Version Check for Doxygen, Fix doc* Target Execution Mar 7, 2025
@mguetschow
Copy link
Contributor

I created a separate issue and I think I'd prefer to have a separate PR for it as well, even though it probably only needs to have one line changed. It's just such a different thing and if it has any side effects, I'd like to have it findable.

I added the fix for the issue to this PR and added the testing procedure to the first message.

Sorry for not interfering before, but yeah indeed, this would make more sense as a separate PR 🙈

Copy link
Contributor

@mguetschow mguetschow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good now, locally confirmed to work as expected. Let's not go through the additional loop to split the two changes into separate PRs again (unless you feel like it).

Please squash!

@crasbe crasbe force-pushed the pr/doxygen_versioncheck branch from 1e3202d to 7728ef2 Compare March 7, 2025 19:20
@crasbe
Copy link
Contributor Author

crasbe commented Mar 7, 2025

Looks good now, locally confirmed to work as expected. Let's not go through the additional loop to split the two changes into separate PRs again (unless you feel like it).

Please squash!

On one hand it would've made more sense as a separate PR, but on the other hand it would've created a hen-and-egg situation again like the STM32 ADC PRs. You need one PR to properly test the other and vice versa.

With the two commits, it's somewhat separated I guess.

@crasbe
Copy link
Contributor Author

crasbe commented Mar 7, 2025

Thank you for your inputs and patience. I learned a lot about Make and the RIOT build system again and we even found some bugs along the way :)

@maribu maribu added this pull request to the merge queue Mar 7, 2025
Merged via the queue into RIOT-OS:master with commit 2f1788c Mar 7, 2025
25 checks passed
@crasbe crasbe deleted the pr/doxygen_versioncheck branch March 7, 2025 22:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: build system Area: Build system Area: doc Area: Documentation CI: ready for build If set, CI server will compile all applications for all available boards for the labeled PR Type: enhancement The issue suggests enhanceable parts / The PR enhances parts of the codebase / documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Build System: make -C path/path doc fails in Base Folder
5 participants