build, clean, rebuild, compile, run/start
build, clean, rebuild, compile, run/start의 차이 Build compiles all modified code files in the project or workspace/solution, and then links the object files into an executable. If no code files have been modified since the last build, this option does nothing. 즉, build = compile + link Clean removes all cached objects and executables so the next time the project is built, all files will be recompi..