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