mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +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`. |
||
---|---|---|
.. | ||
drivers | ||
include | ||
tools | ||
board_init.c | ||
Makefile | ||
Makefile.include | ||
README |
Flashing: tools/mc1322x-load.pl -f <path/to/binary> -t /dev/<tty-device> more information: https://github.com/malvira/libmc1322x/wiki/libmc1322x#loading-images-to-ram-with-mc1322x-loadpl Erase: cd tools/ftditools/ make ./bbmc -l redbee-econotag erase more information: https://github.com/malvira/libmc1322x/wiki/bbmc