URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [hwtests/] [xcptest/] [Makefile] - Rev 245
Compare with Previous | Blame | View Log
## Makefile for xcptest ROM#BUILD = ../../buildXCPTEST_SRC = start.s main.c lib.c serial.s end.s.PHONY: all install run cleanall: xcptest.exoinstall: xcptest.exoxcptest.exo: xcptest.bin$(BUILD)/bin/bin2exo -S2 0 xcptest.bin xcptest.exoxcptest.bin: $(XCPTEST_SRC)$(BUILD)/bin/lcc -A -Wo-rom -Wl-rd -Wl0xC03F0000 \-Wl-m -Wlxcptest.map -o xcptest.bin $(XCPTEST_SRC)run: xcptest.bin$(BUILD)/bin/sim -i -s 1 -t 0 -r xcptest.binclean:rm -f *~rm -f xcptest.map xcptest.bin xcptest.exo
