diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-08 22:08:04 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-08 22:08:33 -0400 |
commit | 37d7d9cb50ac2f4ab02400d293e913905df1cb8d (patch) | |
tree | d1cfa9ee8162654a32a263a857f9efebe4b107ca /usr.bin/login/Makefile | |
parent | fc8c9bc5029d006d531341c5306b49fc081bcfd7 (diff) |
usr.bin: Add initial /etc/passwd parsing
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/login/Makefile')
-rw-r--r-- | usr.bin/login/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
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) |