From fb3f16dcd1ea568155e17c882e2cdd182031fe1a Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Sun, 24 Sep 2023 03:15:18 +0200 Subject: [PATCH] chore(python): Fix some minor Makefile issues (#11276) --- py-polars/Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/py-polars/Makefile b/py-polars/Makefile index 53e0d7b65a66..f74da5944b76 100644 --- a/py-polars/Makefile +++ b/py-polars/Makefile @@ -23,17 +23,15 @@ build: .venv ## Compile and install Polars for development @unset CONDA_PREFIX && source $(VENV_BIN)/activate && maturin develop .PHONY: build-debug-opt -build-debug-opt: .venv ## Compile and install Polars for development, with minimal optimizations turned on +build-debug-opt: .venv ## Compile and install Polars with minimal optimizations turned on @unset CONDA_PREFIX && source $(VENV_BIN)/activate && maturin develop --profile opt-dev .PHONY: build-debug-opt-subset -build-debug-opt: .venv ## Compile and install Polars for development, with minimal optimizations turned on \ - and no default features. +build-debug-opt-subset: .venv ## Compile and install Polars with minimal optimizations turned on and no default features @unset CONDA_PREFIX && source $(VENV_BIN)/activate && maturin develop --no-default-features --profile opt-dev .PHONY: build-opt -build-opt: .venv ## Compile and install Polars for performance-sensitive development, with nearly \ - full optimization on and debug assertions turned off, but with debug symbols on +build-opt: .venv ## Compile and install Polars with nearly full optimization on and debug assertions turned off, but with debug symbols on @unset CONDA_PREFIX && source $(VENV_BIN)/activate && maturin develop --profile debug-release .PHONY: build-release