URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [binutils/] [tests-2/] [link/] [Makefile] - Rev 67
Go to most recent revision | Compare with Previous | Blame | View Log
BUILD = ../../../build
all:
$(BUILD)/bin/as -o link1.o link1.s
$(BUILD)/bin/as -o link2.o link2.s
$(BUILD)/bin/ld -o link12 link1.o link2.o
$(BUILD)/bin/ld -o link21 link2.o link1.o
@echo -n "Comparing link12 and link21: "
@if cmp link12 link21 ; \
then echo "Files are equal." ; \
else echo "Error found!" ; \
fi
clean:
rm -f *~ link1.o link2.o link12 link21
Go to most recent revision | Compare with Previous | Blame | View Log