neorv32/sw/example/processor_check/makefile

21 lines
520 B
Makefile

# Modify this variable to fit your NEORV32 setup (neorv32 home folder)
OSFLAG :=
ifeq ($(OS),Windows_NT)
NEORV32_HOME ?= ..\..\..
sim-check: sim
cat $(NEORV32_HOME)\sim\simple\neorv32.uart0.sim_mode.text.out | grep "PROCESSOR TEST COMPLETED SUCCESSFULLY!"
include $(NEORV32_HOME)\sw\common\common.mk
else
NEORV32_HOME ?= ../../..
sim-check: sim
cat $(NEORV32_HOME)/sim/simple/neorv32.uart0.sim_mode.text.out | grep "PROCESSOR TEST COMPLETED SUCCESSFULLY!"
include $(NEORV32_HOME)/sw/common/common.mk
endif