mirror of
https://github.com/fachat/xa65.git
synced 2025-04-21 23:37:12 +00:00
24 lines
334 B
Makefile
24 lines
334 B
Makefile
#
|
|
# Makefile for tests
|
|
#
|
|
|
|
XA=../../xa
|
|
|
|
tests: mixabs1 mixabs2 clean
|
|
|
|
|
|
mixabs1: mixabsolute.a65
|
|
@echo This should fail
|
|
${XA} $< || exit 0 && exit 1
|
|
|
|
mixabs2: mixabsolute.a65
|
|
${XA} -R $<
|
|
file65 -V a.o65
|
|
reloc65 -bt 40960 -o b.o65 a.o65
|
|
hexdump -C b.o65 > b.hex
|
|
cmp mixabs2.out b.hex
|
|
|
|
clean:
|
|
rm -f a.err a.o65 a.hex b.o65 b.hex
|
|
|