Added basic Makefile

This commit is contained in:
Jef Roosens 2021-03-05 20:06:17 +01:00
parent 07d92715de
commit f69e489f28
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F

16
Makefile Normal file
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