refactor logger
[simavr] / examples / Makefile
index 3fd6771..65cc893 100644 (file)
@@ -1,6 +1,11 @@
 
 boards_base=${wildcard board_*}
+# Remove simduino until FileMapping is implemented to work around missing mmap in Win32
+ifeq (${shell uname -o}, Msys)
+boards=${subst board_usb,,${subst board_simduino,,$(boards_base)}}
+else
 boards=$(boards_base)
+endif
 
 all:
        for bi in ${boards}; do $(MAKE) -C $$bi; done