diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-31 17:17:57 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-31 17:17:57 -0400 |
commit | 65024f230dd030f2f10c155f63b1d374aac00f86 (patch) | |
tree | 6365c025fc880f9b262684b03272419ed3c80eeb /usr.bin/fetch/Makefile | |
parent | 19497ac00ceb8e225ce7008df26024d4c6a1d2b9 (diff) |
usr.bin: Add simple `fetch' program
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/fetch/Makefile')
-rw-r--r-- | usr.bin/fetch/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
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) |