From 92d4f9dae64ab5325feca1f39e5955415e8275b9 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 18 Apr 2025 21:50:44 -0400 Subject: usr.bin: Add basic "shell" Signed-off-by: Ian Moffett --- usr.bin/osh/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/osh/Makefile (limited to 'usr.bin/osh/Makefile') diff --git a/usr.bin/osh/Makefile b/usr.bin/osh/Makefile new file mode 100644 index 0000000..28981fe --- /dev/null +++ b/usr.bin/osh/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +osh: + $(CC) $(CFILES) -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3