From dc9c651d3b5286677d234ace3069c0e2734cf838 Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Tue, 15 Nov 2022 16:45:44 +0100 Subject: [PATCH] chore(tfhe): fix Makefile typo --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c4721e1a4..db083af08 100644 --- a/Makefile +++ b/Makefile @@ -98,7 +98,7 @@ build_boolean_and_shortint: install_rs_build_toolchain .PHONY: build_c_api # Build the C API for boolean and shortint build_c_api: install_rs_build_toolchain - RUSTFLAGS="$(RUSTFLAGS)" cargo $(CARGO_RS_BUILD_TOOLCHAIN) build --release + RUSTFLAGS="$(RUSTFLAGS)" cargo $(CARGO_RS_BUILD_TOOLCHAIN) build --release \ --features=$(TARGET_ARCH_FEATURE),boolean-c-api,shortint-c-api -p tfhe .PHONY: test_core_crypto # Run the tests of the core_crypto module