mirror of
https://github.com/fachat/xa65.git
synced 2025-01-16 19:32:04 +00:00
bd65f3de18
Resolved Conflicts: xa/ChangeLog xa/src/xa.c xa/tests/adrm/Makefile xa/tests/binclude/Makefile xa/tests/charset/Makefile xa/tests/comcom/Makefile xa/tests/fordef/Makefile xa/tests/incerr/Makefile
20 lines
348 B
Makefile
20 lines
348 B
Makefile
|
|
default:
|
|
# this should fail.
|
|
../../xa scomcom.asm || exit 0 && exit 1
|
|
# it did fail. these should now all succeed.
|
|
../../xa -M scomcom.asm
|
|
../hextool -cmp=scomcomm.ok < a.o65
|
|
../../xa comcom.asm
|
|
../hextool -cmp=comcom.ok < a.o65
|
|
../../xa -M comcom.asm
|
|
../hextool -cmp=comcomm.ok < a.o65
|
|
|
|
clean:
|
|
rm -f a.o65
|
|
|
|
tests:
|
|
./runtest.sh -q -C
|
|
|
|
|