From f69e489f28f87178b9aa913e95e5f0a9a95f3d51 Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Fri, 5 Mar 2021 20:06:17 +0100 Subject: [PATCH] Added basic Makefile --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2c20587 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +all: debug +.PHONY: all + +# Builds +debug: + @ cargo build +.PHONY: debug + +release: + @ cargo build --release +.PHONY: release + + +# Run +run: + @ cargo run