diff --git a/Makefile.embedded b/Makefile.embedded index 8253b39af..4654626c4 100644 --- a/Makefile.embedded +++ b/Makefile.embedded @@ -1,3 +1,8 @@ +# This Makefile contains make variables and rules that are only applicable +# to builds for embedded devices (i.e. excluding platforms native and cooja). +# Future extensions to the build system that are of a similar nature (for +# embedded devices only), can be achieved by extending this Makefile here. + RLWRAPGOALS = login serialdump serialview .PHONY: $(RLWRAPGOALS) diff --git a/Makefile.identify-target b/Makefile.identify-target index 7843fdf6a..86e06c093 100644 --- a/Makefile.identify-target +++ b/Makefile.identify-target @@ -1,3 +1,8 @@ +# This Makefile can be used to identify the selected TARGET used for a +# specific build. It can be included by example Makefiles that need to take +# decisions based on TARGET. It is also automatically included by the +# top-level Makefile.include. + ifeq ($(TARGET),) -include Makefile.target ifeq ($(TARGET),) diff --git a/Makefile.tools b/Makefile.tools index 6dd978ee1..041f383b6 100644 --- a/Makefile.tools +++ b/Makefile.tools @@ -1,3 +1,7 @@ +# Some make rules in the main build system depend on the presence of utilities +# under the tools/ dir. For those dependencies, we use this makefile here to +# recursively invoke the respective build under tools/. + TOOLS_DIR = $(CONTIKI)/tools TOOL_DEPS = $(TOOLS_DIR)/tools-utils.c $(TOOLS_DIR)/tools-utils.h