URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [monitor/] [monitor/] [copy/] [Makefile] - Rev 152
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for ROM-to-RAM copy program
#
BUILD = ../../../build
.PHONY: all install clean
all: copy.bin
install: copy.bin
copy.bin: copy.o
$(BUILD)/bin/ld -o copy.bin -m copy.map \
-h -rc 0xE0000000 copy.o
copy.o: copy.s
$(BUILD)/bin/as -o copy.o copy.s
clean:
rm -f *~ copy.o copy.bin copy.map
Go to most recent revision | Compare with Previous | Blame | View Log