diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-31 20:29:41 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-31 20:29:41 +0300 |
commit | 4ee7ec378ea9e63f2133759e607a765e62d22e9a (patch) | |
tree | a337198bed440c04388e54814e39b908a6b8842b /_posts/2020-05-20-makefile-escaping.md | |
parent | ubuntu-packaging: fix typos (diff) | |
download | blog-4ee7ec378ea9e63f2133759e607a765e62d22e9a.tar.gz blog-4ee7ec378ea9e63f2133759e607a765e62d22e9a.zip |
makefile_escaping: best practices
Diffstat (limited to '_posts/2020-05-20-makefile-escaping.md')
-rw-r--r-- | _posts/2020-05-20-makefile-escaping.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2020-05-20-makefile-escaping.md b/_posts/2020-05-20-makefile-escaping.md index 968901a..faa3754 100644 --- a/_posts/2020-05-20-makefile-escaping.md +++ b/_posts/2020-05-20-makefile-escaping.md @@ -17,7 +17,7 @@ this post: [Makefile style guide]: https://clarkgrubb.com/makefile-style-guide ``` -MAKEFLAGS += --warn-undefined-variables +MAKEFLAGS += --no-builtin-rules --no-builtin-variables --warn-undefined-variables .DEFAULT_GOAL := all .DELETE_ON_ERROR: .SUFFIXES: |