From ec175fc736b1d3bd63584190aa0d9af54ac3a28f Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Wed, 9 Mar 2022 17:33:48 +0100 Subject: [PATCH] make: Add compile cmd --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d0009c478c..c879102de2 100644 --- a/Makefile +++ b/Makefile @@ -112,7 +112,11 @@ endif .PHONY: help_all help_all: help_usage help_cc help_python help_java help_dotnet help_archive help_doc -# OR Tools unique library. +# Commands to build/clean all languages. +.PHONY: compile +compile: + cmake --build dependencies --target install --config $(BUILD_TYPE) -j $(JOBS) -v + .PHONY: build_all build_all: $(MAKE) third_party BUILD_PYTHON=ON BUILD_JAVA=ON BUILD_DOTNET=ON