libsignify-rs 0.1.3

OpenBSD-compatible file signing & verification library
Documentation
# libsignify-rs's Makefile
# Copyright (c) 2025, 2026 Ali Polatel <alip@chesswob.org>
# SPDX-License-Identifier: ISC

RUSTFLAGS := -g
export RUSTFLAGS

all: build

build:
	cargo build --release
clean:
	rm -rf --one-file-system ./target
cov:
	cargo llvm-cov test --release --text
fmt:
	cargo fmt
lint:
	cargo clippy
check:
	cargo test --release -- --nocapture

.PHONY: all build clean cov fmt lint check