From 7275891d83fc52631f75b9511e9aa8468fb7f0a8 Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Wed, 17 Mar 2021 14:29:40 -0400 Subject: [PATCH] eye: update makefile --- graphics/gr/bitmap/Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/graphics/gr/bitmap/Makefile b/graphics/gr/bitmap/Makefile index 718b6405..ad9b21cf 100644 --- a/graphics/gr/bitmap/Makefile +++ b/graphics/gr/bitmap/Makefile @@ -7,11 +7,12 @@ EMPTYDISK = ../../../empty_disk/empty.dsk all: bitmap.dsk make_bitmap make_bitmap_small -bitmap.dsk: HELLO EYE EYE.BAS EYE_NEW.BAS +bitmap.dsk: HELLO EYE EYE.BAS EYE_NEW.BAS EYE_DROP.BAS cp $(EMPTYDISK) bitmap.dsk $(DOS33) -y bitmap.dsk SAVE A HELLO $(DOS33) -y bitmap.dsk SAVE A EYE.BAS $(DOS33) -y bitmap.dsk SAVE A EYE_NEW.BAS + $(DOS33) -y bitmap.dsk SAVE A EYE_DROP.BAS $(DOS33) -y bitmap.dsk BSAVE -a 0xC00 EYE ### @@ -31,6 +32,11 @@ EYE_NEW.BAS: eye_new.bas ### +EYE_DROP.BAS: eye_drop.bas + $(TOKENIZE) < eye_drop.bas > EYE_DROP.BAS + +### + EYE: eye.o ld65 -o EYE eye.o -C $(LINKERSCRIPTS)/apple2_c00.inc @@ -57,4 +63,4 @@ make_bitmap_small.o: make_bitmap_small.c ### clean: - rm -f *~ *.o *.lst HELLO EYE EYE.BAS EYE_NEW.BAS make_bitmap make_bitmap_small + rm -f *~ *.o *.lst HELLO EYE EYE.BAS EYE_NEW.BAS EYE_DROP.BAS make_bitmap make_bitmap_small