Ramsay Jones <ramsay@xxxxxxxxxxxxxxxxxxxx> writes: > [Yes, 'cd Documentation; make clean all' will be slower that a doing > separate 'make clean; make', but the extra 10s, or so, will be swamped > by the documentation build time! ;-) ] Hmph, the "all" part in "make clean all" needs the information we read from these generated files, and time must be spent to generate them whether "make clean all" or "make clean; make all" is used. In the latter, we may not generate and read them in the first phase, but the second one "make all" would need to do so anyway. So I am puzzled why "make clean all" needs to be slower---don't we generate and read them only once in either case?