diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-28 02:55:13 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-28 02:55:13 +0200 |
commit | 921daa9ad96f00dff2c934d904a5e7753ca343de (patch) | |
tree | e1fe9ec11546b41b5c8f8082eb25e0941fdf2bff /Makefile | |
parent | dotfiles: bring up-to-date (diff) | |
download | maintenance-921daa9ad96f00dff2c934d904a5e7753ca343de.tar.gz maintenance-921daa9ad96f00dff2c934d904a5e7753ca343de.zip |
Makefile: best practices
Diffstat (limited to '')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,8 +3,9 @@ include prelude.mk .SECONDEXPANSION: LIMIT ?= all +$(eval $(call noexpand,LIMIT)) -args := --inventory inventory.ini --limit '$(LIMIT)' +args := --inventory inventory.ini --limit '$(call escape,$(LIMIT))' .PHONY: all all: run |