]> git.sur5r.net Git - cc65/blob - testcode/assembler/Makefile
starting branch for adding the missing undocumented opcodes
[cc65] / testcode / assembler / Makefile
1
2 all: chklegal.bin chkillegal.bin
3         @#
4
5 .PHONY: chklegal.bin chkillegal.bin
6
7 chklegal.bin: legal.s
8         ../../bin/cl65 --target none --cpu 6502X -o chklegal.bin legal.s
9         diff legal.ref chklegal.bin
10
11 chkillegal.bin: illegal.s
12         ../../bin/cl65 --target none --cpu 6502X -o chkillegal.bin illegal.s
13
14 ref: legal.s
15         ../../bin/cl65 --target none --cpu 6502X -o legal.ref legal.s
16
17 clean:
18         rm -f legal.o chklegal.bin
19         rm -f illegal.o chkillegal.bin