diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..7483afe92 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +configure: + @which cargo > /dev/null || (echo "Please install Rust 1.70 (or newer) toolchain; e.g. with 'apt install cargo', or using rustup" && exit 1) + +all: configure + cargo build diff --git a/make.bat b/make.bat new file mode 100644 index 000000000..8ebfb624e --- /dev/null +++ b/make.bat @@ -0,0 +1 @@ +cargo build