From d6bd4640721867f59d89c68fddb15098524c56c8 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 16 Jul 2025 20:50:19 -0400 Subject: usr: Add 'kstat' program for system info The 'kstat' program provides kernel statistics and accounting information Signed-off-by: Ian Moffett --- usr.bin/kstat/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/kstat/Makefile (limited to 'usr.bin/kstat/Makefile') diff --git a/usr.bin/kstat/Makefile b/usr.bin/kstat/Makefile new file mode 100644 index 0000000..ccceb3c --- /dev/null +++ b/usr.bin/kstat/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/kstat: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3