From d6f1d1ff3d1c3aa3b2c9395ecf68e0bb6486ba76 Mon Sep 17 00:00:00 2001 From: Ain <41307858+nero@users.noreply.github.com> Date: Sun, 22 Dec 2019 02:36:52 +0100 Subject: [PATCH] CP437.BIN: generate from shipped bitmap --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 50b3bb2..455f3d6 100644 --- a/Makefile +++ b/Makefile @@ -42,6 +42,9 @@ utils/%: src/utils/%.c mkdir -p utils $(CC) -o $@ $< +CP437.BIN: src/cp437.bmp utils/bmp2font + utils/bmp2font $< $@ + # Boot sectors boot/%.bs: boot/%.asm $(NASM) $(NASM_ARGS) -DFLOPPY=$(FLOPPY) -o $@ $<