blob: 0ceb9321c884410de977afebe3f7e7f73345e1a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
PARTS=memsetup.xex font_dl.xex client.xex
# remove the -a if using older versions of atasm
ATASM=atasm -s -a
all: fnchat.xex
fnchat.xex: $(PARTS)
cat $(PARTS) > fnchat.xex
client.xex:
$(MAKE) -f Makefile.client
%.xex: %.asm
$(ATASM) -o$@ $<
memsetup.xex: memsetup.asm
font_dl.xex: font_dl.asm font.dat
test:
cl65 -C src/atari.cfg -t atari -o testmain.xex src/addrs.c src/edbox.c src/screen.c uitest/test.c
cat memsetup.xex font_dl.xex testmain.xex > test.xex
|