mirror of
https://github.com/fachat/xa65.git
synced 2025-04-21 08:37:12 +00:00
11 lines
200 B
Makefile
11 lines
200 B
Makefile
default: test1
|
|
|
|
test1:
|
|
# this should fail in non-relocating mode
|
|
../../xa test1.s -o test1.o || exit 0 && exit 1
|
|
../../xa -R test1.s -o test1.o
|
|
../hextool -cmp=ok < test1.o
|
|
|
|
clean:
|
|
rm -f *.o
|