1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/qemu-i386
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
..
include Initial import of the x86 port 2014-05-25 13:40:29 +02:00
Makefile make: easifier usage of module subdirectories 2014-06-17 15:49:32 +02:00
Makefile.include s/PROJECT/APPLICATION/g 2014-05-26 13:21:09 +02:00
x86_board_init.c Initial import of the x86 port 2014-05-25 13:40:29 +02:00
x86_board_lpm.c Initial import of the x86 port 2014-05-25 13:40:29 +02:00