summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNamilskyy <alive6863@gmail.com>2025-10-29 22:27:47 +0300
committerNamilskyy <alive6863@gmail.com>2025-10-29 22:27:47 +0300
commite6aa891cadd94232b533a95feebf764a61054fcc (patch)
treefd02d7d5adc38da8ed03315e295a9a81cf0d7a93 /Makefile
parent8aff5a0353bbfc95e57be95fb3046201b22fb7dd (diff)
Building release
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..b1e44f5
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,22 @@
+CARGO ?= cargo
+
+.PHONY: all build run clean fmt check
+
+all: build
+
+build:
+ $(CARGO) build
+
+run:
+ $(CARGO) run -- $(ARGS)
+
+clean:
+ $(CARGO) clean
+
+fmt:
+ $(CARGO) fmt
+
+check:
+ $(CARGO) check
+
+