diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-12 13:45:59 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-12 13:45:59 -0400 |
commit | 51369c989cc490d96f6db7c3c3741f9793da1ae4 (patch) | |
tree | 1dab9f4aaceb793a423bea7f7cecba3295a073fd /src/cmd/Makefile | |
parent | 423731942e321c9cd387669ff8c86c76867866ac (diff) |
cmd: Add reboot command
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/cmd/Makefile')
-rw-r--r-- | src/cmd/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cmd/Makefile b/src/cmd/Makefile index 7c05606..d7906a9 100644 --- a/src/cmd/Makefile +++ b/src/cmd/Makefile @@ -10,8 +10,11 @@ all: LIBC_DIR=$(shell pwd)/../$(LIBC_DIR) cd hush/; make LDSCRIPT=$(LDSCRIPT) CC=$(CC) AS=$(AS) LD=$(LD) SYSROOT=$(SYSROOT) \ LIBC_DIR=$(shell pwd)/../$(LIBC_DIR) + cd reboot/; make LDSCRIPT=$(LDSCRIPT) CC=$(CC) AS=$(AS) LD=$(LD) SYSROOT=$(SYSROOT) \ + LIBC_DIR=$(shell pwd)/../$(LIBC_DIR) .PHONY: clean clean: cd init/; make clean cd hush/; make clean + cd reboot/; make clean |