URL
https://opencores.org/ocsvn/riscv_vhdl/riscv_vhdl/trunk
Subversion Repositories riscv_vhdl
[/] [riscv_vhdl/] [trunk/] [examples/] [bootarm/] [makefiles/] [makefile] - Rev 5
Compare with Previous | Blame | View Log
include util.mak
TOP_DIR=../
OBJ_DIR = $(TOP_DIR)linuxbuild/obj
ELF_DIR = $(TOP_DIR)linuxbuild/bin
#-----------------------------------------------------------------------------
.SILENT:
TEA = 2>&1 | tee _$@-comp.err
all: boot
$(ECHO) " All done.\n"
boot:
$(ECHO) " Boot rom image building started:"
$(MKDIR) ./$(OBJ_DIR)
$(MKDIR) ./$(ELF_DIR)
make -f make_boot TOP_DIR=$(TOP_DIR) OBJ_DIR=$(OBJ_DIR) ELF_DIR=$(ELF_DIR) $@ $(TEA)