Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use makefile in C language

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

Most people do not understand the knowledge points of this article "how to use makefile in C language", so the editor summarizes the following content, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "how to use makefile in C language" article.

An example of learning and implementing C language makefile

Let's take a look at an example:

Person: main.o person.o rf +-o $@ $^%. O:%. Cpp rf +-c-o $@ $< clean: rm-rf * .o Person

Where:

1. Person represents the target file to be generated.

Main.o person.o is dependent on files

So Person: main.o person.o

This means that if you want to generate the Person file, you have to rely on the main.o and person.o files.

2. $@: indicates the target file, which is Person

$^: represents all dependent files after the target file, that is, .o file

<: indicates the first dependent file, and the first one here refers to main.o

3.%. O:%. Cpp

%, o:%, cpp preceded by% indicates a wildcard, indicating that all .o files and all .cpp files are wildcards.

4. It is also important to note that the above tab + is not preceded by a space, but a tab. In general, the tab is the size of four spaces.

5 、 clean:

Corresponding to the following files, if you execute make clean,makefile, it will help you clear all .o and Person target files.

The above is about the content of this article on "how to use makefile in C language". I believe we all have some understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please pay attention to the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report