URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [binutils/] [tests-1/] [L16/] [Makefile] - Rev 67
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for as/ld test
#
BUILD = ../../../build
all:
$(BUILD)/bin/as -o test0.o test0.s
$(BUILD)/bin/as -o test1.o test1.s
$(BUILD)/bin/as -o test2.o test2.s
$(BUILD)/bin/ld -h -o test -m test.map test0.o test1.o test2.o
$(BUILD)/bin/dof -a test1.o >test1.dump
clean:
rm -f *~ test0.o test1.o test2.o test test.map test1.dump
Go to most recent revision | Compare with Previous | Blame | View Log