From 709893364df1241da94c6396a7ab1440aab7593d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 23 May 2019 14:10:37 +0200 Subject: [PATCH] LibC: The "install" target should depend on the "startfiles" target. This ensures that crt0.o is built during the Toolchain bootstrap. --- LibC/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibC/Makefile b/LibC/Makefile index acdc8975d3..b259c98c1f 100644 --- a/LibC/Makefile +++ b/LibC/Makefile @@ -76,7 +76,7 @@ $(LIBRARY): $(CPP_OBJS) $(ASM_OBJS) clean: @echo "CLEAN"; rm -f $(LIBRARY) $(CPP_OBJS) $(ASM_OBJS) *.d -install: $(LIBRARY) +install: $(LIBRARY) startfiles mkdir -p ../Root/usr/include mkdir -p ../Root/usr/lib # Copy headers