linux中的make命令的詳細解釋
linux中的make命令的詳細解釋
linxu下的make命令是一個GNU下的工程化編譯工具。下面由學習啦小編為大家整理了linux的make命令的詳細解釋的相關知識,希望對大家有幫助!
一、linux中的make命令的詳細解釋
make命令是GNU的工程化編譯工具,用于編譯眾多相互關聯(lián)的源代碼問價,以實現(xiàn)工程化的管理,提高開發(fā)效率。
語法
make(選項)(參數(shù))
選項
-f:指定“makefile”文件;
-i:忽略命令執(zhí)行返回的出錯信息;
-s:沉默模式,在執(zhí)行之前不輸出相應的命令行信息;
-r:禁止使用build-in規(guī)則;
-n:非執(zhí)行模式,輸出所有執(zhí)行命令,但并不執(zhí)行;
-t:更新目標文件;
-q:make操作將根據(jù)目標文件是否已經(jīng)更新返回"0"或非"0"的狀態(tài)信息;
-p:輸出所有宏定義和目標文件描述;
-d:Debug模式,輸出有關文件和檢測時間的詳細信息。
Linux下常用選項與Unix系統(tǒng)中稍有不同,下面是不同的部分:
-c dir:在讀取 makefile 之前改變到指定的目錄dir;
-I dir:當包含其他 makefile文件時,利用該選項指定搜索目錄;
-h:help文擋,顯示所有的make選項;
-w:在處理 makefile 之前和之后,都顯示工作目錄。
參數(shù)
目標:指定編譯目標。
二、Linux中的make命令詳解實例
1. 一個簡單的例子
為了編譯整個工程,你可以簡單的使用 make 或者在 make 命令后帶上目標 all。
$ make
gcc -c -Wall test.c
gcc -c -Wall anotherTest.c
gcc -Wall test.o anotherTest.o -o test
你能看到 make 命令第一次創(chuàng)建的依賴以及實際的目標。
如果你再次查看目錄內(nèi)容,里面多了一些 .o 文件和執(zhí)行文件:
$ ls
anotherTest.c anotherTest.o Makefile test test.c test.h test.o
現(xiàn)在,假設你對 test.c 文件做了一些修改,重新使用 make 編譯工程:
$ make
gcc -c -Wall test.c
gcc -Wall test.o anotherTest.o -o test
你可以看到只有 test.o 重新編譯了,然而另一個 Test.o 沒有重新編譯。
現(xiàn)在清理所有的目標文件和可執(zhí)行文件 test,你可以使用目標 clean:
$ make clean
rm -rf *.o test
$ ls
anotherTest.c Makefile test.c test.h
你可以看到所有的 .o 文件和執(zhí)行文件 test 都被刪除了。
2. 通過 -B 選項讓所有目標總是重新建立
到目前為止,你可能注意到 make 命令不會編譯那些自從上次編譯之后就沒有更改的文件,但是,如果你想覆蓋 make 這種默認的行為,你可以使用 -B 選項。
下面是個例子:
$ make
make: Nothing to be done for `all’.
$ make -B
gcc -c -Wall test.c
gcc -c -Wall anotherTest.c
gcc -Wall test.o anotherTest.o -o test
你可以看到盡管 make 命令不會編譯任何文件,然而 make -B 會強制編譯所有的目標文件以及最終的執(zhí)行文件。
3. 使用 -d 選項打印調(diào)試信息
如果你想知道 make 執(zhí)行時實際做了什么,使用 -d 選項。
這是一個例子:
$ make -d | more
GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
This program built for x86_64-pc-linux-gnu
Reading makefiles…
Reading makefile `Makefile’…
Updating makefiles….
Considering target file `Makefile’.
Looking for an implicit rule for `Makefile’.
Trying pattern rule with stem `Makefile’.
Trying implicit prerequisite `Makefile.o’.
Trying pattern rule with stem `Makefile’.
Trying implicit prerequisite `Makefile.c’.
Trying pattern rule with stem `Makefile’.
Trying implicit prerequisite `Makefile.cc’.
Trying pattern rule with stem `Makefile’.
Trying implicit prerequisite `Makefile.C’.
Trying pattern rule with stem `Makefile’.
Trying implicit prerequisite `Makefile.cpp’.
Trying pattern rule with stem `Makefile’.
--More--
這是很長的輸出,你也看到我使用了 more 命令來一頁一頁顯示輸出。
4. 使用 -C 選項改變目錄
你可以為 make 命令提供不同的目錄路徑,在尋找 Makefile 之前會切換目錄的。
這是一個目錄,假設你就在當前目錄下:
$ ls
file file2 frnd frnd1.cpp log1.txt log3.txt log5.txt
file1 file name with spaces frnd1 frnd.cpp log2.txt log4.txt
但是你想運行的 make 命令的 Makefile 文件保存在 ../make-dir/ 目錄下,你可以這樣做:
$ make -C ../make-dir/
make: Entering directory `/home/himanshu/practice/make-dir’
make: Nothing to be done for `all’.
make: Leaving directory `/home/himanshu/practice/make-dir
你能看到 make 命令首先切到特定的目錄下,在那執(zhí)行,然后再切換回來。
5. 通過 -f 選項將其它文件看作 Makefile
如果你想將重命名 Makefile 文件,比如取名為 my_makefile 或者其它的名字,我們想讓 make 將它也當成 Makefile,可以使用 -f 選項。
make -f my_makefile
通過這種方法,make 命令會選擇掃描 my_makefile 來代替 Makefile。
三、Linux中的make命令知識擴展
無論是在linux 還是在Unix環(huán)境 中,make都是一個非常重要的編譯命令。不管是自己進行項目開發(fā)還是安裝應用軟件,我們都經(jīng)常要用到make或make install。利用make工具,我們可以將大型的開發(fā)項目分解成為多個更易于管理的模塊,對于一個包括幾百個源文件的應用程序,使用make和 makefile工具就可以簡潔明快地理順各個源文件之間紛繁復雜的相互關系。
而且如此多的源文件,如果每次都要鍵入gcc命令進行編譯的話,那對程序員 來說簡直就是一場災難。而make工具則可自動完成編譯工作,并且可以只對程序員在上次編譯后修改過的部分進行編譯。
因此,有效的利用make和 makefile工具可以大大提高項目開發(fā)的效率。同時掌握make和makefile之后,您也不會再面對著Linux下的應用軟件手足無措了。