9久久伊人精品综合,亚洲一区精品视频在线,成 人免费va视频,国产一区二区三区黄网,99国产精品永久免费视频,亚洲毛片多多影院,精品久久久无码人妻中文字幕,无码国产欧美一区二区三区不卡
學習啦 > 學習電腦 > 操作系統 > Linux教程 > linux編譯命令之make命令

linux編譯命令之make命令

時間: 佳洲1085 分享

linux編譯命令之make命令

  make命令是很多linux程序員經常使用的一個命令,下面由學習啦小編為大家整理了linux編譯命令make的相關知識,希望大家喜歡!

  linux下編譯命令之make命令詳解

  1.linux編譯命令Make命令如何工作的

  對于不知道背后機理的人來說,make 命令像命令行參數一樣接收目標。這些目標通常存放在以 “Makefile” 來命名的特殊文件中,同時文件也包含與目標相對應的操作。更多信息,閱讀關于 Makefiles 如何工作的系列文章。

  當 make 命令第一次執行時,它掃描 Makefile 找到目標以及其依賴。如果這些依賴自身也是目標,繼續為這些依賴掃描 Makefile 建立其依賴關系,然后編譯它們。一旦主依賴編譯之后,然后就編譯主目標(這是通過 make 命令傳入的)。

  現在,假設你對某個源文件進行了修改,你再次執行 make 命令,它將只編譯與該源文件相關的目標文件,因此,編譯完最終的可執行文件節省了大量的時間。

  2.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。

3610529 主站蜘蛛池模板: 99久久婷婷国产综合精品青草漫画| 亚洲熟女少妇乱色一区二区| 视频一区视频二区视频三| 精品国产色情一区二区三区| 人妻中文字幕av资源站| 亚洲精品一区二区三区色| 最新国内精品自在自线视频| 国产一区二区精品久久呦| 色哟哟www网站入口成人学校| 久久人人97超碰爱香蕉| 久久久一本精品99久久精品88 | 97久久久亚洲综合久久| 国产精品普通话国语对白露脸 | 久久成人成狠狠爱综合网| 亚洲av成人久久18禁| 在线观看国产一区亚洲bd| 成人国产精品中文字幕| 伊人久久大香线蕉AV网禁呦| 国产不卡一区二区在线| 国产av一区二区亚洲精品| 国产成人精品无码专区| 绝顶丰满少妇av无码| 欧美色丁香| 成人国产精品免费网站| 国语精品国内自产视频| 99在线视频免费观看| 亚洲中文精品一区二区| 99热精品毛片全部国产无缓冲| 好吊视频一区二区三区人妖| 少妇精品视频一码二码三| 亚洲国产精品成人av网| 18禁无遮拦无码国产在线播放| 久久99九九精品久久久久蜜桃 | 国产亚洲综合区成人国产| 好吊视频一区二区三区在线 | 亚洲春色在线视频| 2018年亚洲欧美在线v| 青青草国产精品日韩欧美| 中文字幕av中文字无码亚| 婷婷四虎东京热无码群交双飞视频 | 亚洲国产精品日韩在线|