dos33fsprogs/still_alive/Makefile
Vince Weaver e6c001287d sa: try to encrypt the ascii art
turns out it is too slow, and we can't re-use the lz4 code
without duplicating it completely.
2018-05-23 16:04:27 -04:00

29 lines
729 B
Makefile

include ../Makefile.inc
DOS33 = ../dos33fs-utils/dos33
TOKENIZE = ../asoft_basic-utils/tokenize_asoft
all: still_alive.dsk
still_alive.dsk: STILL_ALIVE TITLE.BAS
$(DOS33) -y still_alive.dsk BSAVE -a 0x0C00 STILL_ALIVE
$(DOS33) -y still_alive.dsk SAVE A TITLE.BAS
STILL_ALIVE: still_alive.o
ld65 -o STILL_ALIVE still_alive.o -C ../linker_scripts/apple2_c00.inc
still_alive.o: still_alive.s \
../asm_routines/mockingboard.s \
../asm_routines/lz4_decode.s \
display_art.s display_lyrics.s \
interrupt_handler.s \
ascii_art.inc ascii_art_lz4.inc lyrics.inc zp.inc
ca65 -o still_alive.o still_alive.s -l still_alive.lst
TITLE.BAS: title.bas
$(TOKENIZE) < title.bas> TITLE.BAS
clean:
rm -f *~ *.o *.lst STILL_ALIVE