mirror of
https://github.com/deater/tb1.git
synced 2024-12-22 13:29:48 +00:00
46e442b38a
For some reason they made the command line arg order stricter.
19 lines
321 B
Makefile
19 lines
321 B
Makefile
all: TB_6502
|
|
|
|
|
|
TB_6502: tb_6502
|
|
make_b ./tb_6502 ./TB_6502 0xC00
|
|
|
|
tb_6502: tb_6502.o
|
|
ld65 -o tb_6502 tb_6502.o -C ./apple2_c00.inc
|
|
|
|
tb_6502.o: tb_6502.s
|
|
ca65 -o tb_6502.o tb_6502.s -l tb_6502.lst
|
|
|
|
disk:
|
|
dos33 tb_6502.dsk SAVE B TB_6502
|
|
|
|
|
|
clean:
|
|
rm -f *.lst *.o tb_6502 *~ add_to_disk TB_6502 make_b a.out
|