mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-27 02:31:00 +00:00
25 lines
448 B
Makefile
25 lines
448 B
Makefile
|
include ../Makefile.inc
|
||
|
|
||
|
DOS33 = ../dos33fs-utils/dos33
|
||
|
PNG2GR = ../gr-utils/png2gr
|
||
|
PNG2RLE = ../gr-utils/png2rle
|
||
|
|
||
|
all: dgr_view.dsk
|
||
|
|
||
|
|
||
|
dgr_view.dsk: $(DOS33) DGR_VIEW
|
||
|
cp empty.dsk dgr_view.dsk
|
||
|
$(DOS33) -y dgr_view.dsk BSAVE -a 0x1000 DGR_VIEW
|
||
|
|
||
|
###
|
||
|
|
||
|
DGR_VIEW: dgr_view.o
|
||
|
ld65 -o DGR_VIEW dgr_view.o -C ../linker_scripts/apple2_1000.inc
|
||
|
|
||
|
dgr_view.o: dgr_view.s
|
||
|
ca65 -o dgr_view.o dgr_view.s -l dgr_view.lst
|
||
|
|
||
|
clean:
|
||
|
rm -f *~ *.o DGR_VIEW *.lst
|
||
|
|