From 65024f230dd030f2f10c155f63b1d374aac00f86 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 31 May 2025 17:17:57 -0400 Subject: usr.bin: Add simple `fetch' program Signed-off-by: Ian Moffett --- usr.bin/fetch/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/fetch/Makefile (limited to 'usr.bin/fetch/Makefile') diff --git a/usr.bin/fetch/Makefile b/usr.bin/fetch/Makefile new file mode 100644 index 0000000..4b08e84 --- /dev/null +++ b/usr.bin/fetch/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/fetch: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3