URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [hwtests/] [jalrtest/] [Makefile] - Rev 33
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for jalrtest ROM
#
BUILD = ../../build
.PHONY: all install run clean
all: jalrtest.exo
install: jalrtest.exo
jalrtest.exo: jalrtest.bin
$(BUILD)/bin/bin2exo 0 jalrtest.bin jalrtest.exo
jalrtest.bin: jalrtest.o
$(BUILD)/bin/ld -h -rc 0xE0000000 \
-o jalrtest.bin jalrtest.o
jalrtest.o: jalrtest.s
$(BUILD)/bin/as -o jalrtest.o jalrtest.s
run: jalrtest.bin
$(BUILD)/bin/sim -i -t 1 -r jalrtest.bin
clean:
rm -f *~ jalrtest.o jalrtest.bin jalrtest.exo
Go to most recent revision | Compare with Previous | Blame | View Log