opengm_rts 0.2.4

GM/T 0005-2021 randomness test suits written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: all build-rust

all: release

version := 0.2.4

release_targets := aarch64-apple-darwin \
x86_64-pc-windows-gnu


release:
	cargo build --bin opengm_rts --release --target aarch64-apple-darwin;
	cp target/aarch64-apple-darwin/release/opengm_rts ./dist/opengm_rts_darwin_aarch64_v${version};
	cargo build --bin opengm_rts --release --target x86_64-pc-windows-gnu;
	cp target/x86_64-pc-windows-gnu/release/opengm_rts.exe ./dist/opengm_rts_win_x86_64_v${version}.exe;