From 27a3e69356db7d50603e675d8ecc81df86dab594 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 4 Jun 2025 00:03:45 -0400 Subject: usr.bin: kfgwm: Add initial WM sources - Add basic structures and defines for describing a window - Add basic window drawing routines - Draw demo/test window Signed-off-by: Ian Moffett --- usr.bin/kfgwm/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/kfgwm/Makefile (limited to 'usr.bin/kfgwm/Makefile') diff --git a/usr.bin/kfgwm/Makefile b/usr.bin/kfgwm/Makefile new file mode 100644 index 0000000..a0fb49a --- /dev/null +++ b/usr.bin/kfgwm/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/kfgwm: + gcc $(CFILES) -Iinclude/ -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3