diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-13 08:09:53 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-13 08:09:53 +0200 |
commit | c53f6a52e07cdfdca51b67ec9473fe1fc40e8f64 (patch) | |
tree | 01afb45be4eab799a225ed25fff53e2124caa757 /Libraries/LibC/Makefile | |
parent | 6c4024c04a354b39c89e453f281d5d67c69e22a3 (diff) | |
download | serenity-c53f6a52e07cdfdca51b67ec9473fe1fc40e8f64.zip |
LibC: Fix make target dependency that was breaking parallel make sometimes.
Diffstat (limited to 'Libraries/LibC/Makefile')
-rw-r--r-- | Libraries/LibC/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibC/Makefile b/Libraries/LibC/Makefile index 922cb014d4..5c563fcdbe 100644 --- a/Libraries/LibC/Makefile +++ b/Libraries/LibC/Makefile @@ -63,7 +63,7 @@ DEFINES += -DUSERLAND -DSERENITY_LIBC_BUILD all: $(LIBRARY) startfiles -startfiles: +startfiles: $(ASM_OBJS) @echo "CXX crt0.o"; $(CXX) $(CXXFLAGS) -o crt0.o -c crt0.cpp cp crti.ao crti.o cp crtn.ao crtn.o |