if (NOT DEFINED BOARD) set(BOARD iss) endif() if (NOT DEFINED ISA) set(ISA imc) endif() if(DEFINED LINK_TARGET) set(LNK LINK_TARGET=${LINK_TARGET}) endif() message(STATUS "Building firmware using ${BOARD} board configuration and isa ${ISA}") add_custom_target(fw-common ALL COMMAND make -C hello-world BOARD=${BOARD} ISA=${ISA} ${LNK} && make -C benchmarks/dhrystone BOARD=${BOARD} ISA=${ISA} ${LNK} && make -C benchmarks/coremark BOARD=${BOARD} ISA=${ISA} ${LNK} USES_TERMINAL WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})