diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-02 15:37:11 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-02 15:38:35 -0400 |
commit | f723ab6ee1a99e02c6c7817dfc435940b2a943d5 (patch) | |
tree | 63d9b9a42a1ebd39e716e751ae04101a78e48f4e | |
parent | 0d39007ace2be756a3048a9e33d94c68bcff177b (diff) |
usr: init: Use project root in build script
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | usr.sbin/init/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/init/Makefile b/usr.sbin/init/Makefile index bee9f3a..5f95379 100644 --- a/usr.sbin/init/Makefile +++ b/usr.sbin/init/Makefile @@ -2,5 +2,5 @@ include user.mk CFILES = $(shell find . -name "*.c") -init: +$(ROOT)/base/usr/sbin/init: gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) |