URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [hwtests/] [serial/] [pc2fpga/] [Makefile] - Rev 256
Compare with Previous | Blame | View Log
## Makefile for serial line test program (PC --> FPGA)#BUILD = ../../../build.PHONY: all install cleanall: receive0.exo receive1.exo sendinstall: receive0.exo receive1.exo sendreceive0.o: receive0.s$(BUILD)/bin/as -o receive0.o receive0.sreceive1.o: receive1.s$(BUILD)/bin/as -o receive1.o receive1.sreceive0.bin: receive0.o$(BUILD)/bin/ld -h -rc 0xE0000000 -o receive0.bin receive0.oreceive1.bin: receive1.o$(BUILD)/bin/ld -h -rc 0xE0000000 -o receive1.bin receive1.oreceive0.exo: receive0.bin$(BUILD)/bin/bin2exo -S2 0 receive0.bin receive0.exoreceive1.exo: receive1.bin$(BUILD)/bin/bin2exo -S2 0 receive1.bin receive1.exosend: send.cgcc -g -Wall -o send send.cclean:rm -f *~rm -f receive0.o receive0.bin receive0.exorm -f receive1.o receive1.bin receive1.exorm -f send
