From 4e3351d4a75c02ac7a2a8c60cc6fa6579d95f08f Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 24 Jun 2025 04:38:09 -0400 Subject: usr.bin: Add initial 'cat' implementation Signed-off-by: Ian Moffett --- usr.bin/cat/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/cat/Makefile (limited to 'usr.bin/cat/Makefile') diff --git a/usr.bin/cat/Makefile b/usr.bin/cat/Makefile new file mode 100644 index 0000000..4ecfea7 --- /dev/null +++ b/usr.bin/cat/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/cat: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3