diff options
author | Ian Moffett <ian@osmora.org> | 2025-08-02 03:05:44 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-08-02 03:05:44 -0400 |
commit | 3e1e7f23c60ec74e8ddf0e960dd0f4bb1b3facbf (patch) | |
tree | 71ba294b38888fbca427aebbe9ba6bdf45f4a56e /usr.bin/mrow/Makefile | |
parent | d68e7acced381037f49d55d083c7059cd07bc76c (diff) |
usr: mrow: Use 'libgfx' instead of bare fbdev
Instead of relying on mmap()'ing the framebuffer and doing shape math
manually, this commit puts libgfx to use.
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/mrow/Makefile')
-rw-r--r-- | usr.bin/mrow/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mrow/Makefile b/usr.bin/mrow/Makefile index ae17849..d7c7ef4 100644 --- a/usr.bin/mrow/Makefile +++ b/usr.bin/mrow/Makefile @@ -3,4 +3,4 @@ include user.mk CFILES = $(shell find . -name "*.c") $(ROOT)/base/usr/bin/mrow: - gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) -lgfx |