Commit a3994d40 authored by Lucas Russo's avatar Lucas Russo

Makefile: use "SUPPORTED_ML605_BOARDS" variable instead of "ml605"

parent ea46297d
......@@ -98,7 +98,7 @@ endif
endif
# Board selection
ifeq ($(BOARD),ml605)
ifeq ($(BOARD),$(filter $(BOARD),$(SUPPORTED_ML605_BOARDS)))
CFLAGS_USR += -D__BOARD_ML605__ -D__WR_SHIFT_FIX__=2
endif
......@@ -553,19 +553,19 @@ examples_mrproper:
$(MAKE) -C examples mrproper
cfg:
$(MAKE) -C cfg all
# $(MAKE) -C cfg all
cfg_install:
$(MAKE) -C cfg install
# $(MAKE) -C cfg install
cfg_uninstall:
$(MAKE) -C cfg uninstall
# $(MAKE) -C cfg uninstall
cfg_clean:
$(MAKE) -C cfg clean
# $(MAKE) -C cfg clean
cfg_mrproper:
$(MAKE) -C cfg mrproper
# $(MAKE) -C cfg mrproper
install: core_install deps_install liberrhand_install libconvc_install \
libhutils_install libdisptable_install libllio_install libbpmclient_install \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment