mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
3cc435c074
- switched to flashing using the programming port - fixed Makefile.include - fixes some documentation - removed newlib nano.specs - added OSX flashing support - fixed flasher and port for OSX - fixed port on OSX - fixed bossac linux tool - added license header
17 lines
344 B
Makefile
17 lines
344 B
Makefile
|
|
# tell the Makefile.base which module to build
|
|
MODULE = $(BOARD)_base
|
|
|
|
# add a list of board specific subdirectories that should also be build
|
|
DIRS =
|
|
|
|
.PHONY: all clean
|
|
|
|
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 ;
|