From 08dc44c415c63abd71524468afe26b42f2e23b69 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 29 Jun 2025 20:55:51 -0400 Subject: usr: Add 'echo' program to replace osh builtin Signed-off-by: Ian Moffett --- usr.bin/echo/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/echo/Makefile (limited to 'usr.bin/echo/Makefile') diff --git a/usr.bin/echo/Makefile b/usr.bin/echo/Makefile new file mode 100644 index 0000000..296461b --- /dev/null +++ b/usr.bin/echo/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/echo: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3