lib/Makefile: add .o file dependency on libsubdirs targets

Without the change there is no guarantee that .o files will be built
after directories are created for them and build fails as:

    gcc -I/build/gnu-efi-code//lib ... -c lib/runtime/rtstr.c -o runtime/rtstr.o
    Assembler messages:
    Fatal error: can't create runtime/rtstr.o: No such file or directory
This commit is contained in:
Sergei Trofimovich 2022-06-22 23:00:44 +01:00 committed by Nigel Croxon
parent 6b28563584
commit 2ed6486834

View File

@ -74,6 +74,8 @@ all: libsubdirs libefi.a
libsubdirs:
for sdir in $(SUBDIRS); do mkdir -p $$sdir; done
$(OBJS): libsubdirs
libefi.a: $(OBJS)
$(AR) $(ARFLAGS) $@ $^
@ -89,5 +91,3 @@ $(LIBDIRINSTALL)/libefi.a: libefi.a | $(LIBDIRINSTALL)
install: $(LIBDIRINSTALL)/libefi.a
include $(SRCDIR)/../Make.rules
.PHONY: libsubdirs