mirror of
https://github.com/fachat/xa65.git
synced 2025-08-08 04:24:58 +00:00
34 lines
579 B
Makefile
34 lines
579 B
Makefile
#
|
|
# Makefile for tests
|
|
#
|
|
|
|
XA=../../xa
|
|
|
|
CA65=ca65
|
|
LD65=ld65
|
|
|
|
tests: linebreak include1 listblocks listca65 clean
|
|
|
|
|
|
include1: include1.a65
|
|
${XA} -P- $< > a.out
|
|
cmp include1.out a.out
|
|
|
|
linebreak: linebreak.a65
|
|
${XA} -P- $< > a.out
|
|
cmp linebreak.out a.out
|
|
|
|
listblocks: listblocks.a65
|
|
${XA} -P- -Fhtml listblocks.a65 > a.out
|
|
cmp listblocks.html a.out
|
|
|
|
listca65: listca65.a65
|
|
${XA} -XCA65 -P- -Fhtml listca65.a65 > a.out
|
|
#${CA65} $<; ${LD65} -t none -o unnamed2.ca65 unnamed2.o; rm unnamed2.o
|
|
cmp listca65.html a.out
|
|
cmp listca65.ca65 a.o65
|
|
|
|
clean:
|
|
rm -f a.err a.o65 a.out
|
|
|