From 44161afdb82c792be739fa2e5fb0d5c6394634d7 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 21 Jun 2025 15:07:05 -0400 Subject: usr: usr.bin/time -> usr.bin/date Change the 'time' binary to be called 'date' as it is more fitting for the type of program it is. Signed-off-by: Ian Moffett --- usr.bin/date/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/date/Makefile (limited to 'usr.bin/date/Makefile') diff --git a/usr.bin/date/Makefile b/usr.bin/date/Makefile new file mode 100644 index 0000000..09ff299 --- /dev/null +++ b/usr.bin/date/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/date: + gcc $(CFILES) -Iinclude/ -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3