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