From b86fde14a13edabcb6b9552910c89e64f68a6e8e Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 31 May 2025 17:14:55 -0400 Subject: usr.bin: osh: Make kmsg its own program - Give command table entries a path field to refer to paths of executable files - Make kmsg its own program in /usr/bin/kmsg Signed-off-by: Ian Moffett --- usr.bin/kmsg/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/kmsg/Makefile (limited to 'usr.bin/kmsg/Makefile') diff --git a/usr.bin/kmsg/Makefile b/usr.bin/kmsg/Makefile new file mode 100644 index 0000000..9b76cc2 --- /dev/null +++ b/usr.bin/kmsg/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/kmsg: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3