From d68e7acced381037f49d55d083c7059cd07bc76c Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 2 Aug 2025 02:47:53 -0400 Subject: lib: Introduce libgfx This commit introduces libgfx which is a low-level graphics library and does not know anything about windows, display architecture, etc. The job of libgfx is soley to provide an API to draw shapes, graphical objects and perform operations on them. Signed-off-by: Ian Moffett --- lib/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/Makefile') diff --git a/lib/Makefile b/lib/Makefile index a201891..4ad104b 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -6,3 +6,4 @@ ARGS = -I$(ROOT)/builddeps LDSCRIPT=$(LDSCRIPT) USRDIR=$(USRDIR) ROOT=$(ROOT) .PHONY: all all: make -C libc/ $(ARGS) + make -C libgfx/ $(ARGS) -- cgit v1.2.3