mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-12 08:32:08 +00:00
47 lines
947 B
Makefile
47 lines
947 B
Makefile
|
include ../../../Makefile.inc
|
||
|
|
||
|
DOS33 = ../../../utils/dos33fs-utils/dos33
|
||
|
TOKENIZE = ../../../utils/asoft_basic-utils/tokenize_asoft
|
||
|
EMPTYDISK = ../../../empty_disk/empty.dsk
|
||
|
|
||
|
all: tiny_gr8.dsk
|
||
|
|
||
|
tiny_gr8.dsk: HELLO TINY_GR
|
||
|
cp $(EMPTYDISK) tiny_gr8.dsk
|
||
|
$(DOS33) -y tiny_gr8.dsk SAVE A HELLO
|
||
|
$(DOS33) -y tiny_gr8.dsk BSAVE -a 0xB8 TINY_GR
|
||
|
|
||
|
###
|
||
|
|
||
|
submit: text8.zip
|
||
|
|
||
|
text8.zip: TINY_GR tiny_gr.s file_id.diz tiny_gr8.dsk
|
||
|
mkdir -p lovebyte2021_tiny_gr8
|
||
|
cp TINY_GR ./lovebyte2021_tiny_gr8
|
||
|
cp tiny_gr.s ./lovebyte2021_tiny_gr8
|
||
|
cp file_id.diz ./lovebyte2021_tiny_gr8
|
||
|
cp tiny_gr8.dsk ./lovebyte2021_tiny_gr8
|
||
|
cp tiny_gr_720p.mp4 ./lovebyte2021_tiny_gr8
|
||
|
zip -r text8.zip lovebyte2021_tiny_gr8
|
||
|
|
||
|
####
|
||
|
|
||
|
|
||
|
####
|
||
|
|
||
|
HELLO: hello.bas
|
||
|
$(TOKENIZE) < hello.bas > HELLO
|
||
|
|
||
|
###
|
||
|
|
||
|
TINY_GR: tiny_gr.o
|
||
|
ld65 -o TINY_GR tiny_gr.o -C ./apple2_b8.inc
|
||
|
|
||
|
tiny_gr.o: tiny_gr.s
|
||
|
ca65 -o tiny_gr.o tiny_gr.s -l tiny_gr.lst
|
||
|
|
||
|
####
|
||
|
|
||
|
clean:
|
||
|
rm -f *~ *.o *.lst HELLO TINY_GR *.zip
|