summaryrefslogtreecommitdiff
path: root/src/cmd/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-10-15 15:03:07 -0400
committerIan Moffett <ian@osmora.org>2025-10-15 15:51:42 -0400
commitd071ef10b29607561994ddaab80321545c09c142 (patch)
tree612b3fb62c154cda495e4551682d2ccc1f1e2fa2 /src/cmd/Makefile
parent13404c241642fa20885cc806bc833d0ee84ae611 (diff)
cmd: Add initial 'login' program
This commit introduces the initial login program to require a user to enter their credentials before they can use the system Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/cmd/Makefile')
-rw-r--r--src/cmd/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cmd/Makefile b/src/cmd/Makefile
index f0057af..e4ff13e 100644
--- a/src/cmd/Makefile
+++ b/src/cmd/Makefile
@@ -16,6 +16,8 @@ all:
LIBC_DIR=$(shell pwd)/../$(LIBC_DIR)
cd lsdisk/; make LDSCRIPT=$(LDSCRIPT) CC=$(CC) AS=$(AS) LD=$(LD) SYSROOT=$(SYSROOT) \
LIBC_DIR=$(shell pwd)/../$(LIBC_DIR)
+ cd login/; make LDSCRIPT=$(LDSCRIPT) CC=$(CC) AS=$(AS) LD=$(LD) SYSROOT=$(SYSROOT) \
+ LIBC_DIR=$(shell pwd)/../$(LIBC_DIR)
.PHONY: clean
clean:
@@ -24,3 +26,4 @@ clean:
cd reboot/; make clean
cd fetch/; make clean
cd lsdisk/; make clean
+ cd login/; make clean