1
0
mirror of https://github.com/fachat/xa65.git synced 2024-09-27 17:57:51 +00:00
xa65/xa/tests/aserr/Makefile
2023-11-19 21:24:38 +01:00

17 lines
401 B
Makefile

default: test.s
@echo expected to fail....
../../xa -DBAD0 test.s || exit 0 && exit 1
../../xa -DBAD1 test.s || exit 0 && exit 1
../../xa -DBAD2 test.s || exit 0 && exit 1
../../xa -DBAD3 test.s || exit 0 && exit 1
../../xa -DBAD4 test.s || exit 0 && exit 1
../../xa -DBAD5 test.s || exit 0 && exit 1
@echo no more failures!
../../xa test.s
../hextool -cmp=ok < a.o65
clean:
rm -f a.o65