惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
C
Check Point Blog
雷峰网
雷峰网
小众软件
小众软件
GbyAI
GbyAI
美团技术团队
P
Proofpoint News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
Y
Y Combinator Blog
Jina AI
Jina AI
爱范儿
爱范儿
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
GNU Make FAQ
2021-08-29 · via jdhao's digital space

GNU Make is a build automation tool typically used on Linux systems1. Below I will summarize a list of FAQs, which explain how Make works and how to use Make.

General questions#

Why do we need Make?#

Suppose that we want to build an executable or a library with multiple source and header files. To build it, we often need to run quite a few commands. During the development cycle, we need to repeatedly run these commands to build the project. Of course we can do it manually, but it would be time-consuming and error-prone.

With Make, we can run repeating build tasks easily without having to type the build commands manually.

How is Make different from CMake?#

Make is build tool that uses Makefile to build a project. CMake is a meta-build tools, in that it can produce a Makefile or other build files such as build.ninja for Ninja.

What name should we use for Makefile?#

Make usually looks for makefile or Makefile in the current directory. The convention is to use Makefile. However, makefile also works fine.

What is a target, recipe?#

A rule is a bunch of commands we want to run together to build a target, e.g., building a certain object file. The format is like:

Target_name: dependency
# <--> indicates a TAB character.
<-->command1
<-->command2
...

These commands are called recipe for this target. Each command must start with a TAB, though it can be changed in newer versions of make.

A target is the result of executing the rule.

How does make work generally?#

Make is smart. It will not blindly build all the target each time you run it. Since each target may have some dependencies, and each dependency in turn will have their own dependencies. In the end, when we make a target, there is a dependency tree. If you change a source file, make will only compile its parent target and other targets that depend on its parent target recursively. Specifically, make will check the last-modify time of a target’s dependency, if the time stamp is newer than the target itself, it means that this target should be rebuilt to make it up-to-date.

In summary, make is smart enough to only build a target that needs to be rebuilt, reducing compilation time significantly.

Ref:

What is the default target for Make?#

When we simply type make, it can build some target. By default, if we do not specify the target to build, make will pick the first target that does not start with . in its name. So we may use a default target (the name does not really matter) as the first target, to do the default action if the user does not specify one.

Ref:

Usage question#

Difference between @echo and echo#

By default, make will print a command before executing it. Adding @ before a command will suppress its printing before execution.

Ref:

Difference between := and = for assignment?#

Variables defined using := get its value when it is defined. Variables defined using = get its value when it is used. There is a risk that the variable value may change if it depends on the value of other variables.

Ref:

What is a .PHONY target and why is it needed?#

PHONY target is a target that does not produce a file. Typically, a target name is the corresponding file to generate. However, for certain target, we only want to run some command and do not want to generate a target of the same name.

If you do not mark the target as phony, make will first check if there is file of the same name that has been updated. If there is a file of the same name that has been updated, make will not build that target, which is not what we want.

For example, if you have the following Makefile:

foo:
	@echo "hello, this is target foo"

If there is a file named foo in the directory, when you run make foo, you get the following message:

make: 'foo' is up to date

So we mark this target as phony (i.e., we do not want to generate file foo):

By doing this, we make sure that this target will always be build, ignoring a file with the same name. Another example of phony target is the clean target, where we want to remove the generated executable and object files:

.PHONY: clean
clean:
	rm *.o main

Ref:

Special variables used in Makefile#

We can use special variable to simplify the writing of Makefile:

  • $@: the target name
  • $<: the first dependency
  • $^: all the dependencies
main: foo.o bar.o
	g++ -o main foo.o bar.o

In the above example, $@ would be main. $< would be foo.o and $^ would be foo.o bar.o.

Ref:

Assign command output to a variable#

Sometimes, we want to assign the output of some command to a variable. We can use the shell builtin to get the shell command output:

VIM_PATH := $(shell which vim)

Ref:

References#