中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問手機版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級網(wǎng)工!

招聘|合作 登陸|注冊

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點關(guān)注 > linux常用命令

Linux下make命令

時間:2019-07-10

linux命令_linux解壓命令_linux 關(guān)機命令

為了編譯整個工程,你可以簡單的使用make或者在 make 命令后帶上目標(biāo)all。

$ make 
gcc -c -Wall test.c 
gcc -c -Wall anotherTest.c 
gcc -Wall test.o anotherTest.o -o test

你能看到 make 命令第一次創(chuàng)建的依賴以及實際的目標(biāo)。

如果你再次查看目錄內(nèi)容linux命令,里面多了一些 .o 文件和執(zhí)行文件:

$ ls 
anotherTest.c anotherTest.o Makefile test test.c test.h test.o

現(xiàn)在,假設(shè)你對 test.c 文件做了一些修改,重新使用 make 編譯工程:

linux解壓命令_linux命令_linux 關(guān)機命令

$ make 
gcc -c -Wall test.c 
gcc -Wall test.o anotherTest.o -o test

你可以看到只有 test.o 重新編譯了,然而另一個 Test.o 沒有重新編譯。

現(xiàn)在清理所有的目標(biāo)文件和可執(zhí)行文件 test,你可以使用目標(biāo)clean:

$ make clean
rm -rf *.o test
$ ls
anotherTest.c Makefile test.c test.h

你可以看到所有的 .o 文件和執(zhí)行文件 test 都被刪除了。

到目前為止,你可能注意到 make 命令不會編譯那些自從上次編譯之后就沒有更改的文件,但是,如果你想覆蓋 make 這種默認(rèn)的行為,你可以使用 -B 選項。

linux 關(guān)機命令_linux解壓命令_linux命令

下面是個例子:

$ 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會強制編譯所有的目標(biāo)文件以及最終的執(zhí)行文件。

如果你想知道 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--