URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [binutils/] [tests-2/] [hello/] [Makefile] - Rev 196
Go to most recent revision | Compare with Previous | Blame | View Log
BUILD = ../../../build
all: hello.bin
hello.bin: hello.o
$(BUILD)/bin/ld -h -rc 0xC0000000 -o hello.bin hello.o
hello.o: hello.s
$(BUILD)/bin/as -o hello.o hello.s
run: hello.bin
$(BUILD)/bin/sim -t 1 -l hello.bin
clean:
rm -f *~ hello.bin hello.o
Go to most recent revision | Compare with Previous | Blame | View Log