makefile Hello World
C:\生成檔案:
helloWorld :
[TAB]echo hello world
執行結果:
C:\>make
echo hello world
hello world
注意: [TAB]應替換為實際選項卡,stackoverflow 用空格替換選項卡,並且空格不與 makefile 中的選項卡相同。
C:\生成檔案:
helloWorld :
[TAB]echo hello world
執行結果:
C:\>make
echo hello world
hello world
注意: [TAB]應替換為實際選項卡,stackoverflow 用空格替換選項卡,並且空格不與 makefile 中的選項卡相同。