mirror of
https://github.com/fachat/xa65.git
synced 2024-11-15 23:05:30 +00:00
12 lines
324 B
Makefile
12 lines
324 B
Makefile
default:
|
|
# xa should not allow this to happen. if it does, this test is no good.
|
|
../../xa test.inc || exit 0 && exit 1
|
|
# expected-to-fail tests did fail. should be no more errors now.
|
|
../../xa -DBUG test.s -o test.o
|
|
../hextool -cmp=ok < test.o
|
|
../../xa test.s -o test.o
|
|
../hextool -cmp=ok < test.o
|
|
|
|
clean:
|
|
rm -f *.o
|