From a2f777d4bd770a7fe2ae8bf8173d4d0c46fd7edf Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Wed, 9 Nov 2022 09:30:29 +0100 Subject: [PATCH] make: fix archive_python --- .gitignore | 1 + makefiles/Makefile.python.mk | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e8cc7d083f..cdb5e35a1e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ Makefile.local~ /build_make/ /install_make/ /dependencies/ +/or-tools_* /or-tools_cpp* /or-tools_dotnet* /or-tools_java* diff --git a/makefiles/Makefile.python.mk b/makefiles/Makefile.python.mk index faed8b18b9..710ea498eb 100644 --- a/makefiles/Makefile.python.mk +++ b/makefiles/Makefile.python.mk @@ -81,7 +81,7 @@ rpy_%: \ "$(PYTHON_EXECUTABLE)" ortools$S$1$Ssamples$S$$*.py $(ARGS) endef -PYTHON_SAMPLES := algorithms graph constraint_solver linear_solver math_opt routing sat +PYTHON_SAMPLES := algorithms graph constraint_solver linear_solver math_opt pdlp routing sat $(foreach sample,$(PYTHON_SAMPLES),$(eval $(call python-sample-target,$(sample)))) # Examples