summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-14 22:01:56 -0400
committerIan Moffett <ian@osmora.org>2024-03-14 22:01:56 -0400
commit128684dfb24b710cc67bf3de293b31c25746db0c (patch)
tree8e2ba6e7ee86bab31f32265564cc33d2f6f35eba /Makefile.in
parent46af122de0533c2bf8344382757843f47686b33c (diff)
libc: Initial hyra libc commit
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in12
1 files changed, 4 insertions, 8 deletions
diff --git a/Makefile.in b/Makefile.in
index 5bf00a8..f4336a7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -88,7 +88,10 @@ base:
mkdir -p base/usr/sbin/
mkdir -p base/boot/
-lib: base/usr/lib/ld.so
+.PHONY: lib
+lib:
+ cd lib/; make $(USER_MKFLGS)
+ cp lib/libc/build/ld.so base/usr/lib/
.PHONY: run
run:
@@ -115,13 +118,6 @@ clean:
sys/include/machine/:
cd sys/include/; ln -sf arch/$(ARCH) machine
-base/usr/lib/ld.so: lib/mlibc/
- cd lib/; make mlibc/build/
- $(PROMPT) " DYNLD " base/usr/lib/ld.so
- $(PROMPT) " LIBC " base/usr/lib/libc.so
- cp lib/mlibc/build/ld.so base/usr/lib/
- cp lib/mlibc/build/libc.so base/usr/lib/
-
base/boot/hyra-kernel: $(KERNEL_OBJECTS) $(KERNEL_ASMOBJECTS)
rm -rf iso_root
$(PROMPT) " LD " $(shell pwd)/base/boot/hyra-kernel