From 22b44a32283b826fbff09a163653433899c7509e Mon Sep 17 00:00:00 2001 From: Caleb Hattingh Date: Sat, 4 May 2024 00:45:25 +0200 Subject: [PATCH] chore: remove outdated Makefile (fixes #255) (#264) --- Makefile | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index a57c65f2..00000000 --- a/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -ifeq ($(shell uname),Darwin) - EXT := dylib -else - EXT := so -endif - -source_files := $(wildcard src/*.rs) - -all: format lint build test - -PHONY: test format - -lint: - cargo clippy - -test: tantivy/tantivy.$(EXT) - python3 -m pytest - -format: - cargo fmt - -build: - maturin build --interpreter python3.7 python3.8 python3.9 python3.10 python3.11 - -tantivy/tantivy.$(EXT): target/debug/libtantivy.$(EXT) - cp target/debug/libtantivy.$(EXT) tantivy/tantivy.so - -target/debug/libtantivy.$(EXT): $(source_files) - cargo build