mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
467b41ad49
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`. |
||
---|---|---|
.. | ||
at86rf231 | ||
cc110x | ||
cc110x_ng | ||
cc2420 | ||
include | ||
lm75a | ||
ltc4150 | ||
sht11 | ||
srf02 | ||
srf08 | ||
doc.txt | ||
Makefile | ||
Makefile.include |