Table of Contents
Introduction to Make
How Make Works
1 . A simple example
2. Pass the -B option to make all targets always rebuild
3. Use the -d option to print debugging information
4. Use the -C option to change the directory
5. 通过 -f 选项将其它文件看作 Makefile
Home Operation and Maintenance Linux Operation and Maintenance What is the compilation command of linux system

What is the compilation command of linux system

Nov 09, 2022 pm 07:22 PM
linux

The compilation command of Linux system is "Make". In Linux systems, make is a very important compilation command. Administrators use it to compile and install many open source tools through the command line. Programmers use it to manage the compilation issues of their large and complex projects. make is used to manage automatic compilation tasks for large programs, automatically determine that a certain part of the program needs to be recompiled, and issue compilation instructions.

What is the compilation command of linux system

#The operating environment of this tutorial: linux7.3 system, Dell G3 computer.

The make command under Linux is one of the most frequently used commands by system administrators and programmers. Administrators use it to compile and install many open source tools through the command line, and programmers use it to manage the compilation problems of their large and complex projects. In this article we will use some examples to discuss the working mechanism behind the make command.

Introduction to Make

make is a utility program for Linux systems. It is used to manage automatic compilation tasks for large programs, automatically determine that a certain part of the program needs to be recompiled, and issue compilation instructions. Although, we most commonly use it in the compilation of C language programs. However, make is not limited to a specific language. Make can be used in any language that can run the compiler through a shell command. In addition, you can even use make to describe any build task where a file needs to be automatically updated after the files it depends on change.

How Make Works

For those who don’t know the mechanics behind it, the make command accepts targets just like command line arguments. These goals are usually stored in special files named "Makefile", and the files also contain operations corresponding to the goals. 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 Makefile 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
Copy after login

The following is the content of the project:

$ ls 
anotherTest.c Makefile test.c test.h
Copy after login

The following is the content of the Makefile:

all: test test: test.o anotherTest.o 
    gcc -Wall test.o anotherTest.o -o testtest.o: test.c 
    gcc -c -Wall test.c 

anotherTest.o: anotherTest.c 
    gcc -c -Wall anotherTest.c 

clean: 
    rm -rf *.o test
Copy after login

Now let’s look at some examples of make command applications under Linux:

1 . A simple example

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
Copy after login

You can see the dependencies created for the first time by the make command and the actual targets.

If you view the contents of the directory again, there are some more .o files and executable files:

$ ls 
anotherTest.c anotherTest.o Makefile test test.c test.h test.o
Copy after login

Now, assume you have made some modifications to the test.c file , reuse make to compile the project:

$ make 
gcc -c -Wall test.c 
gcc -Wall test.o anotherTest.o -o test
Copy after login

You can see that only test.o has been recompiled, but the other Test.o has not been recompiled.

Now clean all the target files and executable file test, you can use the target clean:

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

You can see all. The o file 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 files 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.

Here 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
Copy after login

You can see that although the make command will not compile any files, make -B will force compilation of all files target file and 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.

This 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--
Copy after login

This is a very long output, you also saw that I used the more command to page by page Page display output.

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
Copy after login

But the Makefile 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
Copy after login

你能看到 make 命令首先切到特定的目录下,在那执行,然后再切换回来。

5. 通过 -f 选项将其它文件看作 Makefile

如果你想将重命名 Makefile 文件,比如取名为 my_makefile 或者其它的名字,我们想让 make 将它也当成 Makefile,可以使用 -f 选项。

make -f my_makefile
Copy after login

通过这种方法,make 命令会选择扫描 my_makefile 来代替 Makefile。

相关推荐:《Linux视频教程

The above is the detailed content of What is the compilation command of linux system. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1669
14
PHP Tutorial
1273
29
C# Tutorial
1256
24
Linux Architecture: Unveiling the 5 Basic Components Linux Architecture: Unveiling the 5 Basic Components Apr 20, 2025 am 12:04 AM

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

vscode Previous Next Shortcut Key vscode Previous Next Shortcut Key Apr 15, 2025 pm 10:51 PM

VS Code One-step/Next step shortcut key usage: One-step (backward): Windows/Linux: Ctrl ←; macOS: Cmd ←Next step (forward): Windows/Linux: Ctrl →; macOS: Cmd →

How to check the warehouse address of git How to check the warehouse address of git Apr 17, 2025 pm 01:54 PM

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

How to run sublime after writing the code How to run sublime after writing the code Apr 16, 2025 am 08:51 AM

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

laravel installation code laravel installation code Apr 18, 2025 pm 12:30 PM

To install Laravel, follow these steps in sequence: Install Composer (for macOS/Linux and Windows) Install Laravel Installer Create a new project Start Service Access Application (URL: http://127.0.0.1:8000) Set up the database connection (if required)

git software installation git software installation Apr 17, 2025 am 11:57 AM

Installing Git software includes the following steps: Download the installation package and run the installation package to verify the installation configuration Git installation Git Bash (Windows only)

See all articles