1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/chronos
René Kijewski 467b41ad49 make: easifier usage of module subdirectories
Many modules have subdirectories. Often these subdirectories should only
be included under certain circumstances. Modules that use submodules
currently need to use this pattern:

```make
DIRS = …

all: $(BINDIR)$(MODULE).a
   @for i in $(DIRS) ; do $(MAKE) -C $$i ; done ;

include $(RIOTBASE)/Makefile.base

clean::
   @for i in $(DIRS) ; do $(MAKE) -C $$i clean ; done ;
```

This PR moves the `all:` and `clean::` boilerplate into `Makefile.base`.
2014-06-17 15:49:32 +02:00
..
drivers removed no longer needed include path 2014-02-07 17:06:50 +01:00
include Sets MCU frequency in 'board.h', instead of the common 'cpu.h' file 2013-12-24 15:41:32 +01:00
board_init.c added license headers and doxygen file information 2014-02-02 22:22:03 +01:00
Makefile make: easifier usage of module subdirectories 2014-06-17 15:49:32 +02:00
Makefile.dep Automatically remove dups in $(USEMODULE) 2014-04-29 00:06:19 +02:00
Makefile.include make: remove local definitions of (ELF|HEX)FILE 2014-06-12 10:12:49 +02:00
putchar.c remove trailing whitespace and newlines 2014-02-11 18:45:06 +01:00