From 32e34cb6562ec619d4f43ab26609070b1ea9759c Mon Sep 17 00:00:00 2001 From: curt mayer Date: Sat, 22 Feb 2020 21:25:35 -0800 Subject: [PATCH] added lzsa --- Source/Fonts/Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Source/Fonts/Makefile b/Source/Fonts/Makefile index 5fab4541..c9a06b35 100644 --- a/Source/Fonts/Makefile +++ b/Source/Fonts/Makefile @@ -2,9 +2,10 @@ OBJECTS = \ font8x8u.asm font8x11u.asm font8x16u.asm \ font8x8c.asm font8x11c.asm font8x16c.asm +OTHERS = font8x8c.bin font8x11c.bin font8x16c.bin + DEST = ../HBIOS TOOLS = ../../Tools -OTHERS = *.rel include $(TOOLS)/Makefile.inc @@ -14,5 +15,14 @@ include $(TOOLS)/Makefile.inc %.rel: %.asm %.bin: %.asm +font8x8c.bin: font8x8u.bin + $(BINDIR)/lzsa -f2 -r $< $@ + +font8x11c.bin: font8x11u.bin + $(BINDIR)/lzsa -f2 -r $< $@ + +font8x16c.bin: font8x16u.bin + $(BINDIR)/lzsa -f2 -r $< $@ + %.asm: %.bin $(BINDIR)/bin2asm $< > $@