1
0
mirror of https://github.com/fachat/xa65.git synced 2024-09-16 23:55:08 +00:00
xa65/xa/tests/ldoreloc/Makefile
2011-12-16 23:04:51 +01:00

24 lines
355 B
Makefile

all: t
1.o65: 1.s
xa -R -c -o 1.o65 1.s
hexdump -C 1.o65 > 1.o65.hex
2.o65: 2.s
xa -R -c -o 2.o65 2.s
hexdump -C 2.o65 > 2.o65.hex
linked.o65: 1.o65 2.o65
ldo65 -o linked.o65 1.o65 2.o65
hexdump -C linked.o65 > linked.o65.hex
t: linked.o65
reloc65 -bt 32768 -xt -o t linked.o65
hexdump -C t > t.hex
diff t t.ok
clean:
rm -f *.o65 *.hex t