neorv32/sw/bootloader/makefile

15 lines
258 B
Makefile
Raw Normal View History

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