diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-04 00:03:45 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-04 00:03:45 -0400 |
commit | 27a3e69356db7d50603e675d8ecc81df86dab594 (patch) | |
tree | 6b11f3b290f81ba7c3f79cb631a46425ab3a6cca /usr.bin/kfgwm/Makefile | |
parent | 6a9e551dbf0426172317f75e811e5e49f2161317 (diff) |
usr.bin: kfgwm: Add initial WM sourcesmain
- Add basic structures and defines for describing a window
- Add basic window drawing routines
- Draw demo/test window
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/kfgwm/Makefile')
-rw-r--r-- | usr.bin/kfgwm/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
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) |