From d8ffd97739a2694f2fff5c0257d96b567c8ae86f Mon Sep 17 00:00:00 2001 From: Michele Guerini Rocco Date: Fri, 20 Oct 2023 16:59:13 +0200 Subject: [PATCH] Makefile: hide warnings when .d missing --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7419c5f..912a7f9 100644 --- a/Makefile +++ b/Makefile @@ -182,7 +182,7 @@ $(OBJDIR)/%.d: $(SRCDIR)/%.f90 | $(OBJDIR) @sed -nE 's@^#include "(.+)"@$(INCDIR)/\1@p' '$<' >> '$@' # Load the generated rules -include $(DEPS) +-include $(DEPS) # Compile a generic Fortran source $(OBJDIR)/%.o: $(SRCDIR)/%.f90 | $(OBJDIR) $(INCDIR)