2018-02-16 21:01:06 -05:00
|
|
|
include ../Makefile.inc
|
|
|
|
|
|
|
|
DOS33 = ../dos33fs-utils/dos33
|
|
|
|
PNG2GR = ../gr-utils/png2gr
|
|
|
|
|
2018-02-17 12:43:21 -05:00
|
|
|
all: chiptune_player.dsk
|
2018-02-16 21:01:06 -05:00
|
|
|
|
2018-02-17 12:43:21 -05:00
|
|
|
chiptune_player.dsk: CHIPTUNE_PLAYER OUT.0
|
|
|
|
$(DOS33) -y chiptune_player.dsk BSAVE -a 0x1000 CHIPTUNE_PLAYER
|
2018-02-17 21:28:49 -05:00
|
|
|
$(DOS33) -y chiptune_player.dsk BSAVE -a 0x6000 OUT.0
|
2018-02-17 00:26:58 -05:00
|
|
|
|
2018-02-16 21:01:06 -05:00
|
|
|
|
|
|
|
CHIPTUNE_PLAYER: chiptune_player.o
|
|
|
|
ld65 -o CHIPTUNE_PLAYER chiptune_player.o -C ../linker_scripts/apple2_1000.inc
|
|
|
|
|
|
|
|
chiptune_player.o: chiptune_player.s \
|
|
|
|
../asm_routines/mockingboard.s \
|
|
|
|
../asm_routines/lzss_decompress.s \
|
|
|
|
chip_title.inc
|
|
|
|
ca65 -o chiptune_player.o chiptune_player.s -l chiptune_player.lst
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *~ TITLE.GR *.o *.lst \
|
|
|
|
CHIPTUNE_PLAYER
|
|
|
|
|