1
0
mirror of https://github.com/fachat/xa65.git synced 2024-06-08 23:29:30 +00:00
xa65/xa/tests/csapiec/Makefile
2020-05-15 19:20:17 +02:00

13 lines
388 B
Makefile

default:
# xa should not allow this to happen. if it does, this test is no good.
../../xa -DBUG=1 -o test.o test.s || exit 0 && exit 1
../../xa -R -DBUG=1 -o testseg.o test.s || exit 0 && exit 1
# xa *should* allow this to happen.
../../xa -o test.o test.s
../hextool -cmp=test.ok < test.o
../../xa -R -o testseg.o test.s
../hextool -cmp=testseg.ok < testseg.o
clean:
rm -f *.o