2024-02-24 08:25:27 +00:00
|
|
|
# Modify this variable to fit your NEORV32 setup (neorv32 home folder)
|
2024-02-27 23:43:22 +00:00
|
|
|
OSFLAG :=
|
|
|
|
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
|
|
NEORV32_HOME ?= ..\..\..
|
|
|
|
|
|
|
|
include $(NEORV32_HOME)\sw\common\common.mk
|
|
|
|
else
|
|
|
|
|
2024-02-24 08:25:27 +00:00
|
|
|
NEORV32_HOME ?= ../../..
|
|
|
|
|
|
|
|
include $(NEORV32_HOME)/sw/common/common.mk
|
2024-02-27 23:43:22 +00:00
|
|
|
endif
|