linux系統的編譯指令是「Make」。在linux系統中,make是一個非常重要的編譯命令,管理員用它透過命令列來編譯和安裝很多開源的工具,程式設計師用它來管理他們大型複雜的專案編譯問題。 make用來管理大型程式的自動編譯任務,自動決定程式某一部分需要重新編譯,並發出編譯指令。
本教學操作環境:linux7.3系統、Dell G3電腦。
Linux 下 make 指令是系統管理員和程式設計師使用的最頻繁的指令之一。管理員用它透過命令列來編譯和安裝很多開源的工具,程式設計師用它來管理他們大型複雜的專案編譯問題。本文我們將用一些實例來討論 make 指令背後的工作機制。
make 是 linux 系統的實用程式。它用於管理大型程式的自動編譯任務,自動決定程式某一部分需要重新編譯,並發出編譯指令。雖然,我們最常見於 C 語言程式的編譯。但是,make 不限於某一特定語言,凡是可以透過 shell 指令來執行編譯器的語言都可以使用 make 。除此之外,你甚至可以用 make 描述任何建置任務,這些任務中,檔案需要在其依賴的檔案發生變動後自動更新。
對於不知道背後機理的人來說,make 指令像命令列參數一樣接收目標。這些目標通常存放在以 “Makefile” 來命名的特殊文件中,同時文件也包含與目標相對應的操作。更多信息,閱讀關於 Makefiles 如何工作的系列文章。
當 make 指令第一次執行時,它會掃描 Makefile 找到目標以及其依賴。如果這些依賴本身也是目標,請繼續為這些依賴掃描 Makefile 建立其依賴關係,然後編譯它們。一旦主依賴編譯之後,然後就編譯主目標(這是透過 make 指令傳入的)。
現在,假設你對某個原始檔進行了修改,你再次執行make 命令,它將只編譯與該原始檔相關的目標文件,因此,編譯最終的可執行檔節省了大量的時間。
以下是本文所使用的測試環境:
OS —— Ubunut 13.04 Shell —— Bash 4.2.45 Application —— GNU Make 3.81
以下是工程的內容:
$ ls
anotherTest.c Makefile test.c test.h
以下是Makefile 的內容:
all: test test: test.o anotherTest.o
gcc -Wall test.o anotherTest.o -o testtest.o: test.c
gcc -c -Wall test.c
anotherTest.o: anotherTest.c
gcc -c -Wall anotherTest.c
clean:
rm -rf *.o test
現在我們來看Linux 下一些make 指令應用的實例:
為了編譯整個工程,你可以簡單的使用 make
或是在make 指令後帶上目標 all
。
$ make
gcc -c -Wall test.c
gcc -c -Wall anotherTest.c
gcc -Wall test.o anotherTest.o -o test
你能看到 make 指令第一次建立的依賴以及實際的目標。
如果你再查看目錄內容,裡面多了一些.o 檔案和執行檔:
$ ls
anotherTest.c anotherTest.o Makefile test test.c test.h test.o
現在,假設你對test.c 檔案做了一些修改,重新使用make 編譯工程:
$ make
gcc -c -Wall test.c
gcc -Wall test.o anotherTest.o -o test
你可以看到只有test.o 重新編譯了,然而另一個Test.o 沒有重新編譯。
現在清理所有的目標檔案和可執行檔test,你可以使用目標 clean
:
$ make clean
rm -rf *.o test$ ls
anotherTest.c Makefile test.c test.h
你可以看到所有的. o 檔案和執行檔test 都被刪除了。
#到目前為止,你可能注意到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
會強制編譯所有的目標檔案以及最終的執行檔。
如果你想知道 make 執行時實際做了什麼,請使用 -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
指令來一頁一頁顯示輸出。
你可以為 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 命令首先切到特定的目录下,在那执行,然后再切换回来。
如果你想将重命名 Makefile 文件,比如取名为 my_makefile 或者其它的名字,我们想让 make 将它也当成 Makefile,可以使用 -f 选项。
make -f my_makefile
通过这种方法,make 命令会选择扫描 my_makefile 来代替 Makefile。
相关推荐:《Linux视频教程》
以上是linux系統的編譯指令是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!