From 66ec8765f305c7a5318d38a383e23b1280cd9186 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 28 Jun 2025 20:31:58 -0400 Subject: usr.bin: Add initial getconf impl Signed-off-by: Ian Moffett --- usr.bin/getconf/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/getconf/Makefile (limited to 'usr.bin/getconf/Makefile') diff --git a/usr.bin/getconf/Makefile b/usr.bin/getconf/Makefile new file mode 100644 index 0000000..48c05a8 --- /dev/null +++ b/usr.bin/getconf/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/getconf: + gcc $(CFILES) -Iinclude/ -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3