在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Linux 下 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 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 命令应用的实例: $ make gcc -c -Wall test.c gcc -c -Wall anotherTest.c gcc -Wall test.o anotherTest.o -o test 你能看到 make 命令第一次创建的依赖以及实际的目标。 $ 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 没有重新编译。 $ make clean rm -rf *.o test $ ls anotherTest.c Makefile test.c test.h 你可以看到所有的 .o 文件和执行文件 test 都被删除了。 $ 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 | 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 命令来一页一页显示输出。 $ 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 命令首先切到特定的目录下,在那执行,然后再切换回来。 make -f my_makefile 通过这种方法,make 命令会选择扫描 my_makefile 来代替 Makefile。 |
请发表评论