mirror of
https://github.com/fachat/xa65.git
synced 2025-08-08 04:24:58 +00:00
11 lines
114 B
Makefile
11 lines
114 B
Makefile
|
|
all: test1 clean
|
|
|
|
test1: test1.s
|
|
../../xa -R -o $@.o65 $<
|
|
../hextool -cmp=$@.o65 < $@.ok
|
|
|
|
clean:
|
|
rm -f *.o65
|
|
|