How make works
For those who don't know the mechanics behind it, the make command accepts targets just like command line arguments. These targets are usually stored in special files named "makefiles", and the files also contain operations corresponding to the targets. For more information, read this series of articles on how makefiles work.
When the make command is executed for the first time, it scans the makefile to find the target and its dependencies. If these dependencies are themselves targets, continue scanning the makefiles for these dependencies to establish their dependencies, and then compile them. Once the main dependencies are compiled, then the main target is compiled (which is passed in through the make command).
Now, assuming you have modified a certain source file and you execute the make command again, it will only compile the target file related to the source file. Therefore, compiling the final executable file saves a lot of money. time.
make command example
The following is the test environment used in this article:
os —— ubunut 13.04 shell —— bash 4.2.45 application —— gnu make 3.81
The following is the content of the project:
$ ls anothertest.c makefile test.c test.h
The following is the makefile Content:
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
Now let’s look at some examples of make command applications under linux:
1. A simple example
In order to compile the entire project, you can simply use make or follow the make command with the target all.
$ make gcc -c -wall test.c gcc -c -wall anothertest.c gcc -wall test.o anothertest.o -o test
You can see the dependencies created for the first time by the make command and the actual target.
If you check the directory contents again, there are some more .o files and executable files in it:
$ ls anothertest.c anothertest.o makefile test test.c test.h test.o
Now, assuming you have made some modifications to the test.c file, use make to compile the project again :
$ make gcc -c -wall test.c gcc -wall test.o anothertest.o -o test
You can see that only test.o is recompiled, but the other test.o is not recompiled.
Now clean all the target files and the executable file test, you can use the target clean:
$ make clean rm -rf *.o test $ ls anothertest.c makefile test.c test.h
You can see that all the .o files and the executable file test have been deleted.
2. Pass the -b option to make all targets always rebuild
By now, you may have noticed that the make command does not compile those targets that have been compiled since the last build. There are no changed files, but if you want to override the default behavior of make, you can use the -b option.
The following is an example:
$ 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
You can see that although the make command will not compile any files, make -b will force compilation of all target files and the final executable file.
3. Use the -d option to print debugging information
If you want to know what make actually does when it is executed, use the -d option.
Here is an example:
$ 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--
This is a very long output, you also saw that I used the more command to display the output page by page.
4. Use the -c option to change the directory
You can provide a different directory path for the make command, and the directory will be switched before searching for the makefile.
This is a directory, assuming you are in the current directory:
$ ls file file2 frnd frnd1.cpp log1.txt log3.txt log5.txt file1 file name with spaces frnd1 frnd.cpp log2.txt log4.txt
But the makefile file of the make command you want to run is saved in the ../make-dir/ directory, you can Do this:
$ 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
You can see that the make command first switches to a specific directory, executes it there, and then switches back.
5. Use the -f option to treat other files as makefiles
If you want to rename the makefile file, such as my_makefile or other names, we If you want make to treat it as a makefile, use the -f option.
make -f my_makefile
With this method, the make command will choose to scan my_makefile instead of makefile.
The above is the detailed content of How to use make command under linux. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version
Recommended: Win version, supports code prompts!

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Chinese version
Chinese version, very easy to use
