diff options
Diffstat (limited to 'actix/Makefile')
-rw-r--r-- | actix/Makefile | 12 |
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 + |