summaryrefslogtreecommitdiff
path: root/actix/Makefile
diff options
context:
space:
mode:
authorxengineering <mail2xengineering@protonmail.com>2021-03-01 16:20:28 +0100
committerxengineering <mail2xengineering@protonmail.com>2021-03-01 16:20:28 +0100
commit92ce74d92e5fe57e59cefcf454373c1a26022cf6 (patch)
treed01eccd6a7eba4de2679b468d2c0f734d7c807fd /actix/Makefile
parentfcfffa47accad303bd9d927502396d8e4174c234 (diff)
downloadweb-template-92ce74d92e5fe57e59cefcf454373c1a26022cf6.tar
web-template-92ce74d92e5fe57e59cefcf454373c1a26022cf6.tar.zst
web-template-92ce74d92e5fe57e59cefcf454373c1a26022cf6.zip
Update Buildsystem
Diffstat (limited to 'actix/Makefile')
-rw-r--r--actix/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/actix/Makefile b/actix/Makefile
new file mode 100644
index 0000000..b815ebe
--- /dev/null
+++ b/actix/Makefile
@@ -0,0 +1,12 @@
+# vim: tabstop=4 shiftwidth=4 noexpandtab
+
+debug:
+ cargo build
+ ./target/debug/actix
+
+release:
+ cargo build --release
+
+clean:
+ cargo clean
+