為了編譯整個工程,你可以簡單的使用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 編譯工程:
$ 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 選項。
下面是個例子:
$ 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--
下一個教程:Linux 一些簡單 的命令