diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 13:03:49 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 13:03:49 +0100 |
commit | 8004aab23e33ef5c9897712b59fa1bf0cbf751de (patch) | |
tree | 73ae6a10d2068ddb5c8a137c57e1bdd16714ff56 | |
parent | workflows/ci: add VS 2022 builds (diff) | |
download | privilege-check-8004aab23e33ef5c9897712b59fa1bf0cbf751de.tar.gz privilege-check-8004aab23e33ef5c9897712b59fa1bf0cbf751de.zip |
Makefile: wrap long commands
Diffstat (limited to '')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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 |