Why is it that Makefile.def includes:

// "missing" indicates that that module doesn't supply
// that recursive target in its Makefile.
[...]
host_modules= { module= fixincludes;
                missing= info;
                missing= dvi;
                missing= pdf;
                missing= TAGS;
                missing= install-info;
                missing= installcheck; };

when fixincludes/Makefile.in includes:

dvi :
pdf :
info :
html :
install-html :
installcheck :

Am I correct in guessing that the "missing" lines in Makefile.def are not currently needed? Or are they merely present in the GCC fixincludes but missing in the fixincludes directories in some other trees that share the top-level build files?

- Brooks

Reply via email to