Follow-up Comment #6, bug #29074 (project make): I have a slight variation of this "bug"; when the included file (included with the -include) runs into a rule problem, make silently stops and does nothing. I argue it should give the same error that it does without the "-".
this make file will demonstrate the issue: to test, do this: $ make fix # restores all files $ make # builds correctly $ make break # remove .h file $ make # demonstrates silent failure $ make PRE381=1 # demonstrates desired failure message <code save_as=Makefile> CPPFLAGS += -I. all: app app: x.o $(CC) -o $@ $< %.d: %.c $(CC) -MM $< | sed -e 's,($*).o[ :]*,1.o $@ : ,g' > $@; test $$? != 0 && $(RM) $@ clean: $(RM) x.o app clobber: clean $(RM) x.? break: clean $(RM) x.h fix: clobber x.c touch x.h x.c: @echo making $@ @printf "#include <stdio.h>n#include <stdlib.h>nn#include "x.h"nnint main(int argc, char **argv)n{ntprintf("hello world\\n");n}" > x.c ifneq ($(filter-out fix clean clobber,$(or $(MAKECMDGOALS),all)),) ifeq ($(PRE381),1) $(info using include) include x.d else $(info using -include) -include x.d endif endif </code> _______________________________________________________ Reply to this item at: <http://savannah.gnu.org/bugs/?29074> _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ _______________________________________________ Bug-make mailing list Bug-make@gnu.org https://lists.gnu.org/mailman/listinfo/bug-make