nexus-am/apps/loader/Makefile

10 lines
193 B
Makefile

NAME = flash-loader
SRCS = main.c image.S
ELF_PATH = ./image/coremark-riscv64-xs.bin
ASFLAGS += -DELF_PATH=\"$(ELF_PATH)\"
image.S: $(ELF_PATH)
touch image.S
include $(AM_HOME)/Makefile.app