亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux中的make命令怎么用

發布時間:2022-02-02 19:47:22 來源:億速云 閱讀:2208 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關Linux中的make命令怎么用的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

在linux系統中make是一個非常重要的編譯命令,不管是自己進行項目開發還是安裝應用軟件,我們都經常要用到make或makeinstall。利用make工具,我們可以將大型的開發項目分解成為多個更易于管理的模塊。

Linux中的make命令怎么用

Linux 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 test 
 
 
 test.o: test.c 
     gcc -c -Wall test.c 
 
 
 anotherTest.o: anotherTest.c 
     gcc -c -Wall anotherTest.c 
 
 
 clean: 
     rm -rf *.o test

現在我們來看 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 命令第一次創建的依賴以及實際的目標。

如果你再次查看目錄內容,里面多了一些 .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 都被刪除了。

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 會強制編譯所有的目標文件以及最終的執行文件。

3. 使用 -d 選項打印調試信息

如果你想知道 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 命令來一頁一頁顯示輸出。

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 命令首先切到特定的目錄下,在那執行,然后再切換回來。

5. 通過 -f 選項將其它文件看作 Makefile

如果你想將重命名 Makefile 文件,比如取名為 my_makefile 或者其它的名字,我們想讓 make 將它也當成 Makefile,可以使用 -f 選項。

 make -f my_makefile

通過這種方法,make 命令會選擇掃描 my_makefile 來代替 Makefile。

感謝各位的閱讀!關于“Linux中的make命令怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东平县| 武汉市| 玛曲县| 武威市| 鸡泽县| 曲靖市| 宁津县| 甘孜| 麻城市| 绥棱县| 康定县| 柘城县| 宜君县| 德州市| 大埔县| 图木舒克市| 桐柏县| 苗栗市| 合阳县| 枣强县| 象山县| 苍山县| 山西省| 尖扎县| 荔波县| 桂东县| 武川县| 东城区| 廉江市| 开原市| 千阳县| 无极县| 合阳县| 通河县| 通许县| 太保市| 榆树市| 武义县| 渑池县| 武夷山市| 都匀市|