aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-01-02 13:03:49 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-01-02 13:03:49 +0100
commit8004aab23e33ef5c9897712b59fa1bf0cbf751de (patch)
tree73ae6a10d2068ddb5c8a137c57e1bdd16714ff56
parentworkflows/ci: add VS 2022 builds (diff)
downloadprivilege-check-8004aab23e33ef5c9897712b59fa1bf0cbf751de.tar.gz
privilege-check-8004aab23e33ef5c9897712b59fa1bf0cbf751de.zip
Makefile: wrap long commands
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 829647e..7748715 100644
--- a/Makefile
+++ b/Makefile
@@ -57,7 +57,14 @@ build:
ifdef CI
cd cmake && python3 -m project.ci.cmake --install -- $(CMAKE_FLAGS)
else
- cd cmake && python3 -m project.cmake.build --toolset '$(call escape,$(TOOLSET))' --configuration '$(call escape,$(CONFIGURATION))' --build '$(call escape,$(cmake_dir))' --install '$(call escape,$(DESTDIR))' -- '$(call escape,$(src_dir))' $(CMAKE_FLAGS)
+ cd cmake && python3 -m project.cmake.build \
+ --toolset '$(call escape,$(TOOLSET))' \
+ --configuration '$(call escape,$(CONFIGURATION))' \
+ --build '$(call escape,$(cmake_dir))' \
+ --install '$(call escape,$(DESTDIR))' \
+ -- \
+ '$(call escape,$(src_dir))' \
+ $(CMAKE_FLAGS)
endif
.PHONY: install