fej/Makefile

17 lines
146 B
Makefile
Raw Normal View History

2021-03-05 20:06:17 +01:00
all: debug
.PHONY: all
# Builds
debug:
@ cargo build
.PHONY: debug
release:
@ cargo build --release
.PHONY: release
# Run
run:
@ cargo run