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. Use the -f option to treat other files as Makefiles
Home Operation and Maintenance Linux Operation and Maintenance How to use the compilation command of linux system

How to use the compilation command of linux system

May 23, 2023 pm 05:20 PM
linux

The compilation command of the 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 automate the task of compiling large programs. It can automatically detect the parts of the program that need to be recompiled and issue corresponding compilation instructions.

Introduction to Make

make is a utility program for Linux systems. It is used to manage the automatic compilation tasks of large programs, automatically determine which part of the program needs to be recompiled, and send 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 unfamiliar with the mechanics behind it, the Make command accepts targets just like command line arguments. Typically, these operations are stored in a special file called a "Makefile" and correspond to the target. For more information, read this series of articles on how Makefiles work.

The first time the Make command is executed, the Makefile will be scanned to find the target and corresponding dependencies. If these dependencies also need to be compiled into the target, continue to scan the Makefile and establish their dependencies, and then compile. Once the main dependencies have finished compiling, the main target is compiled (this is entered via 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 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
Copy after login

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

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

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

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

You can see all .o files and executable file test All 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.

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

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 execution document.

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

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
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

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

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 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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 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)

deepseek web version entrance deepseek official website entrance deepseek web version entrance deepseek official website entrance Feb 19, 2025 pm 04:54 PM

DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

Ouyi okx installation package is directly included Ouyi okx installation package is directly included Feb 21, 2025 pm 08:00 PM

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

BITGet official website installation (2025 beginner's guide) BITGet official website installation (2025 beginner's guide) Feb 21, 2025 pm 08:42 PM

BITGet is a cryptocurrency exchange that provides a variety of trading services including spot trading, contract trading and derivatives. Founded in 2018, the exchange is headquartered in Singapore and is committed to providing users with a safe and reliable trading platform. BITGet offers a variety of trading pairs, including BTC/USDT, ETH/USDT and XRP/USDT. Additionally, the exchange has a reputation for security and liquidity and offers a variety of features such as premium order types, leveraged trading and 24/7 customer support.

Get the gate.io installation package for free Get the gate.io installation package for free Feb 21, 2025 pm 08:21 PM

Gate.io is a popular cryptocurrency exchange that users can use by downloading its installation package and installing it on their devices. The steps to obtain the installation package are as follows: Visit the official website of Gate.io, click "Download", select the corresponding operating system (Windows, Mac or Linux), and download the installation package to your computer. It is recommended to temporarily disable antivirus software or firewall during installation to ensure smooth installation. After completion, the user needs to create a Gate.io account to start using it.

Ouyi Exchange Download Official Portal Ouyi Exchange Download Official Portal Feb 21, 2025 pm 07:51 PM

Ouyi, also known as OKX, is a world-leading cryptocurrency trading platform. The article provides a download portal for Ouyi's official installation package, which facilitates users to install Ouyi client on different devices. This installation package supports Windows, Mac, Android and iOS systems. Users can choose the corresponding version to download according to their device type. After the installation is completed, users can register or log in to the Ouyi account, start trading cryptocurrencies and enjoy other services provided by the platform.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Apr 01, 2025 pm 03:06 PM

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

See all articles