mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 05:05:13 +00:00
23 lines
501 B
Makefile
23 lines
501 B
Makefile
include ../Makefile.inc
|
|
|
|
DOS33 = ../dos33fs-utils/dos33
|
|
TOKENIZE = ../asoft_basic-utils/tokenize_asoft
|
|
|
|
all: entropy.dsk
|
|
|
|
entropy.dsk: ENTROPY ENTROPY.BAS
|
|
$(DOS33) -y entropy.dsk BSAVE -a 0x0C00 ENTROPY
|
|
$(DOS33) -y entropy.dsk SAVE A ENTROPY.BAS
|
|
|
|
ENTROPY: entropy.o
|
|
ld65 -o ENTROPY entropy.o -C ../linker_scripts/apple2_c00.inc
|
|
|
|
entropy.o: entropy.s
|
|
ca65 -o entropy.o entropy.s -l entropy.lst
|
|
|
|
ENTROPY.BAS: entropy.bas
|
|
$(TOKENIZE) < entropy.bas > ENTROPY.BAS
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst ENTROPY
|