From 37d7d9cb50ac2f4ab02400d293e913905df1cb8d Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 8 Jul 2025 22:08:04 -0400 Subject: usr.bin: Add initial /etc/passwd parsing Signed-off-by: Ian Moffett --- usr.bin/login/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 usr.bin/login/Makefile (limited to 'usr.bin/login/Makefile') diff --git a/usr.bin/login/Makefile b/usr.bin/login/Makefile new file mode 100644 index 0000000..8b37d4c --- /dev/null +++ b/usr.bin/login/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/bin/login: + gcc -Iinclude/ $(CFILES) -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3