Added basic Makefile
This commit is contained in:
parent
07d92715de
commit
f69e489f28
1 changed files with 16 additions and 0 deletions
16
Makefile
Normal file
16
Makefile
Normal 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
|
||||||
Reference in a new issue