new global_logger, used in AVR_LOG(), default is stdout/stderr
[simavr] / examples / Makefile
1
2 boards_base=${wildcard board_*}
3 # Remove simduino until FileMapping is implemented to work around missing mmap in Win32
4 ifeq (${shell uname -o}, Msys)
5 boards=${subst board_usb,,${subst board_simduino,,$(boards_base)}}
6 else
7 boards=$(boards_base)
8 endif
9
10 all:
11         for bi in ${boards}; do $(MAKE) -C $$bi; done
12
13 clean:
14         for bi in ${boards}; do $(MAKE) -C $$bi clean; done
15
16 #
17 # The USB example is not made by default, as it downloads stuff
18 # for the vhci library, it fails the debian policy on being able
19 # to build offline.
20 #
21 extra_board_usb:
22         make -C extra_board_usb