mirror of
https://github.com/fachat/xa65.git
synced 2025-04-08 18:37:12 +00:00
11 lines
202 B
Makefile
11 lines
202 B
Makefile
default:
|
|
# compile with masm mode on.
|
|
../../xa -M -o test.o test.s
|
|
../hextool -cmp=okmasm < test.o
|
|
# compile without
|
|
../../xa -o test.o test.s
|
|
../hextool -cmp=oknomasm < test.o
|
|
|
|
clean:
|
|
rm -f *.o
|