1. 程式人生 > >windows下make使用的環境配置

windows下make使用的環境配置

1.       準備工作:

程式:

MinGW-3.1.0-1.exe      windows下的gcc,編譯c語言的工具

 make                           按照makefile規則編譯程式的工具

配置環境: 

環境變數配置 :

控制面板系統 >高階 >環境變數 >系統變數 >新增MinGW 安裝目錄下的bin目錄到path中去,或者命令列下執行:set PATH= MinGW 安裝目錄下的bin目錄

C:/WINDOWS/system32用上邊方法新增到path中以找到make.exe

建立四個檔案:

//---------------------------Main.c : ---------------------------//

#include "stdio.h"

main()

{

    func();

    printf("this is main/n");

    getch();

}

//---------------------------func.c : ---------------------------//

#include "stdio.h"

func()

{

    printf("this is func/n");

    getch();

}

一個空檔案,檔名為makefile或者Makefile,這個檔名是必須的因為make預設查詢該檔案

建立compile.bat檔案

內容為:

make

cmd