make 只是編譯你這一次更改過(guò)的文件,然后連接。 相當(dāng)于vc里面的build
build 是對(duì)所有文件全部重新編譯鏈接。 相當(dāng)于vc里面的rebuild
只要不是第一次,build的速度比make慢很多。
第一次,make=build
MAKE is not inherently tied to compiling and linking, but is a more generic tool for executing commands based on file dependencies.
Choose Build from the Project Manager Project context menu to rebuild all the components of your project regardless of whether they have changed.
posted on 2007-08-04 05:17
七星重劍 閱讀(917)
評(píng)論(0) 編輯 收藏 引用 所屬分類:
PL--c/c++