1
0
mirror of https://github.com/fachat/xa65.git synced 2026-03-15 18:16:25 +00:00
Files
xa65/xa/tests/comcom/Makefile
2024-03-12 09:25:18 +01:00

23 lines
598 B
Makefile

default:
# this should fail.
../../xa scomcom.asm || exit 0 && exit 1
../../xa -a 816com.asm || exit 0 && exit 1
../../xa -w 816com.asm || exit 0 && exit 1
# it did fail. these should now all succeed.
../../xa -XMASM scomcom.asm
../hextool -cmp=scomcomm.ok < a.o65
../../xa -a scomcom.asm
../hextool -cmp=scomcomm.ok < a.o65
../../xa comcom.asm
../hextool -cmp=comcom.ok < a.o65
../../xa -XMASM comcom.asm
../hextool -cmp=comcomm.ok < a.o65
../../xa -a comcom.asm
../hextool -cmp=comcomm.ok < a.o65
../../xa -a -w 816com.asm
../hextool -cmp=816com.ok < a.o65
clean:
rm -f a.o65