make clean vs make clobber

make is pretty smart, and picks up what has changed from the last build, so if you run repo sync and then build without cleaning, in most cases it should work just fine.

make clean does the same thing as make clobber, which is removing all generated files ($OUT_DIR).

原文地址:https://www.cnblogs.com/Ph-one/p/4333363.html