Added basic Makefile

master
Jef Roosens 2021-03-05 20:06:17 +01:00
parent 07d92715de
commit f69e489f28
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
1 changed files with 16 additions and 0 deletions

16
Makefile 100644
View File

@ -0,0 +1,16 @@
all: debug
.PHONY: all
# Builds
debug:
@ cargo build
.PHONY: debug
release:
@ cargo build --release
.PHONY: release
# Run
run:
@ cargo run