From: Amelia Coutard Date: Fri, 14 Oct 2022 07:07:03 +0000 (+0200) Subject: Fixed bug about dependencies in the kernel's module.mk X-Git-Url: https://git.ameliathe1st.gay/?a=commitdiff_plain;h=d279c7c57d49f80ce6d7ec972430bb14d2af47bb;p=voyage-au-centre-des-fichiers.git Fixed bug about dependencies in the kernel's module.mk --- diff --git a/kernel/module.mk b/kernel/module.mk index eefe87c..9c610c9 100644 --- a/kernel/module.mk +++ b/kernel/module.mk @@ -49,7 +49,7 @@ $(OUT_DIR)%.o: $(SRC_DIR)% mkdir -p $(dir $(DEP_DIR)$*) $(CXX) $(CXXFLAGS) -c "$<" -MMD -MT "$@" -MF "$(DEP_DIR)$*.d" -o "$@" --include $(DEPS_DIR)*.d +-include $(DEP_DIR)*.d CXXFLAGS := $(OLD_CXXFLAGS) LDFLAGS := $(OLD_LDFLAGS)