aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-01-02 13:02:52 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-01-02 13:02:52 +0100
commitba6685b7fe847ebdf204dc9d91b2e67d1fa3f5d3 (patch)
treecd36c3dbc2a0c0276d9be5ea2acaa6a4a15a3422
parentworkflows/ci: add VS 2022 builds (diff)
downloadwinapi-debug-ba6685b7fe847ebdf204dc9d91b2e67d1fa3f5d3.tar.gz
winapi-debug-ba6685b7fe847ebdf204dc9d91b2e67d1fa3f5d3.zip
Makefile: wrap long commands
-rw-r--r--Makefile23
1 files changed, 20 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0cdc209..f0e0b49 100644
--- a/Makefile
+++ b/Makefile
@@ -57,7 +57,11 @@ clean:
rm -rf -- '$(call escape,$(build_dir))'
$(boost_dir)/:
- cd cmake && python3 -m project.boost.download --cache '$(call escape,$(build_dir))' -- '$(call escape,$(BOOST_VERSION))' '$(call escape,$(boost_dir))'
+ cd cmake && python3 -m project.boost.download \
+ --cache '$(call escape,$(build_dir))' \
+ -- \
+ '$(call escape,$(BOOST_VERSION))' \
+ '$(call escape,$(boost_dir))'
.PHONY: deps
ifdef CI
@@ -65,7 +69,12 @@ deps:
cd cmake && python3 -m project.ci.boost -- $(BOOST_LIBRARIES)
else
deps: $(boost_dir)/
- cd cmake && python3 -m project.boost.build --toolset '$(call escape,$(TOOLSET))' --configuration '$(call escape,$(CONFIGURATION))' -- '$(call escape,$(boost_dir))' $(BOOST_LIBRARIES)
+ cd cmake && python3 -m project.boost.build \
+ --toolset '$(call escape,$(TOOLSET))' \
+ --configuration '$(call escape,$(CONFIGURATION))' \
+ -- \
+ '$(call escape,$(boost_dir))' \
+ $(BOOST_LIBRARIES)
endif
.PHONY: build
@@ -73,7 +82,15 @@ 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))' --boost '$(call escape,$(boost_dir))' -- '$(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))' \
+ --boost '$(call escape,$(boost_dir))' \
+ -- \
+ '$(call escape,$(src_dir))' \
+ $(CMAKE_FLAGS)
endif
.PHONY: install