1
0
mirror of https://github.com/fachat/xa65.git synced 2025-08-09 11:25:04 +00:00
Files
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