From 2298d17186cb0e58a96d285384de431902da9b1e Mon Sep 17 00:00:00 2001 From: Lizzy Fleckenstein Date: Fri, 15 Dec 2023 16:10:22 +0100 Subject: big chungus * fix a heap corruption bug * add qemu support * add an ATA driver * add an USTAR read-only file system * boot from disk instead of floppy * font rendering * image rendering * PCI enumeration * init script --- util/ttf2cuddlefont/Makefile | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 util/ttf2cuddlefont/Makefile (limited to 'util/ttf2cuddlefont/Makefile') diff --git a/util/ttf2cuddlefont/Makefile b/util/ttf2cuddlefont/Makefile new file mode 100644 index 0000000..82b54cf --- /dev/null +++ b/util/ttf2cuddlefont/Makefile @@ -0,0 +1,2 @@ +ttf2cuddlefont: main.c + gcc $$(pkg-config --cflags --libs freetype2) -Wall -Wextra main.c -o ttf2cuddlefont -- cgit v1.2.3