diff options
author | Ian Moffett <ian@osmora.org> | 2025-04-18 21:50:44 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-04-18 21:50:44 -0400 |
commit | 92d4f9dae64ab5325feca1f39e5955415e8275b9 (patch) | |
tree | e6eeda53aae48f2c8596d22c2febe8c41a95177b /usr.bin/osh/Makefile | |
parent | 8fb98e4fcf8dfe7caec0b0c9fa53dc9fbb72d10c (diff) |
usr.bin: Add basic "shell"
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/osh/Makefile')
-rw-r--r-- | usr.bin/osh/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
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) |